1
0
Fork 0
mirror of synced 2024-12-21 22:21:08 -05:00

Destroyed Installing plugins via the command line only (markdown)

Bruno Sutic 2015-07-10 17:19:25 +02:00
parent 3e36ec67e2
commit 63ca88eaae

@ -1,18 +0,0 @@
### From inside tmux
When you have `tmux` running, plugins can be installed with the following command:
~/.tmux/plugins/tpm/scripts/install_plugins.sh
This is the equivalent of pressing `prefix + I`.
### From outside tmux
To install the plugins when `tmux` is not even started (for example in a provisioning script):
# start tmux and create a session but don't attach to it
tmux new-session -d
# install the plugins
tmux run "~/.tmux/plugins/tpm/scripts/install_plugins.sh"
# killing the session is not required
tmux kill-session