Files
dotfiles/fish/functions/tmux.fish
T

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