mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 18:02:13 +02:00
18 lines
318 B
Fish
18 lines
318 B
Fish
function tmux
|
|
if test (count $argv) -eq 0
|
|
if type -q omf
|
|
# Update Oh My Fish if it installed
|
|
omf update
|
|
end
|
|
end
|
|
|
|
# Install Tmux plugins
|
|
~/.tmux/plugins/tpm/bin/install_plugins
|
|
|
|
# Update Tmux plugins
|
|
~/.tmux/plugins/tpm/bin/install_plugins
|
|
|
|
# Execute TMUX
|
|
/usr/bin/tmux -u $argv
|
|
end
|