blob: a89445f55f6dcdeb040cfe46c97b476243be721d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# tmux
Cheatsheet: https://tmuxcheatsheet.com/?q=yyyy&hPP=100&idx=tmux_cheats&p=0&is_v=1
## Plugins
Plugin manager: https://github.com/tmux-plugins/tpm
## Friendship with Vim
I use the same set of keys (`<C-[hjkl]>` - without prefix!) to navigate between Vim windows and Tmux panes.
Plugin: https://github.com/christoomey/vim-tmux-navigator
## Save/restore sessions on reboot
- `prefix` + `<C-s>` - save session
- `prefix` + `<C-r>` - restore session
**TODO:** restore vim sessions as well
Plugin: https://github.com/tmux-plugins/tmux-resurrect
|