mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 16:52:12 +02:00
13 lines
242 B
Fish
13 lines
242 B
Fish
function tmux
|
|
if test (count $argv) -eq 0
|
|
# Install Tmux plugins
|
|
~/.tmux/plugins/tpm/bin/install_plugins
|
|
|
|
# Update Tmux plugins
|
|
~/.tmux/plugins/tpm/bin/update_plugins all
|
|
end
|
|
|
|
# Execute TMUX
|
|
/usr/bin/tmux -u $argv
|
|
end
|