diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-07-30 19:42:45 +0200 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2021-07-30 19:42:45 +0200 |
commit | a325b65cf91605f054c18ad80c3f148ce0d2e6d6 (patch) | |
tree | 6c85d65bb46e939d37eae7a99f0c1c0f0030e02b | |
parent | 702cad966cdcb7f99dce3541a6c9e269b200b7c3 (diff) |
Add some tmux stuff
-rw-r--r-- | tmux.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -12,6 +12,7 @@ ## Pane management q display pane indices + :move-pane -t <session id>:<window id> ## Run command in new session @@ -22,3 +23,17 @@ * `:setw synchronize-panes on` turn off with `:setw synchronize-panes off` + +## Packages + +First clone TPM: + + $ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm + +Then in config: + + set -g @plugin 'tmux-plugins/tpm' + set -g @plugin 'tmux-plugins/tmux-sensible' + run '~/.tmux/plugins/tpm/tpm' + +Then `<prefix>+I` to download listed plugins. |