Mercurial > dotfiles
comparison dot_tmux.conf @ 377:ce08bc71b455
Manually manage tmux plugins
author | Zeger Van de Vannet <zegervdv@me.com> |
---|---|
date | Thu, 08 Apr 2021 18:25:40 +0200 |
parents | 44442a6b8aa6 |
children | e4937efdf43e |
comparison
equal
deleted
inserted
replaced
376:fc3dad056d38 | 377:ce08bc71b455 |
---|---|
1 set-environment -g PATH "/project/asic_fpga/tools/tmux/bin:$PATH" | |
2 | |
3 # Nested TMUX sessions (from | 1 # Nested TMUX sessions (from |
4 # https://medium.freecodecamp.org/tmux-in-practice-local-and-nested-remote-tmux-sessions-4f7ba5db8795) | 2 # https://medium.freecodecamp.org/tmux-in-practice-local-and-nested-remote-tmux-sessions-4f7ba5db8795) |
5 bind -T root F11 \ | 3 bind -T root F11 \ |
6 set prefix None \;\ | 4 set prefix None \;\ |
7 set key-table off \;\ | 5 set key-table off \;\ |
118 | 116 |
119 # Local config | 117 # Local config |
120 if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local' | 118 if-shell "[ -f ~/.tmux.conf.local ]" 'source ~/.tmux.conf.local' |
121 | 119 |
122 # Plugins | 120 # Plugins |
123 set -g @plugin 'tmux-plugins/tpm' | 121 # set -g @plugin 'tmux-plugins/tpm' |
124 set -g @plugin 'nhdaly/tmux-better-mouse-mode' | 122 # set -g @plugin 'nhdaly/tmux-better-mouse-mode' |
125 set -g @plugin 'tmux-plugins/tmux-yank' | 123 # set -g @plugin 'tmux-plugins/tmux-yank' |
126 set -g @plugin 'Morantron/tmux-fingers' | 124 # set -g @plugin 'Morantron/tmux-fingers' |
127 set -g @plugin 'laktak/extrakto' | 125 # set -g @plugin 'laktak/extrakto' |
128 set -g @plugin 'tmux-plugins/tmux-resurrect' | 126 # set -g @plugin 'tmux-plugins/tmux-resurrect' |
129 set -g @plugin 'tmux-plugins/tmux-continuum' | 127 # set -g @plugin 'tmux-plugins/tmux-continuum' |
130 | 128 |
131 | 129 |
132 # Config | 130 # Config |
133 set -g @fingers-skip-health-check '1' | |
134 set -g @fingers-compact-hints '0' | |
135 set -g @fingers-hint-format-nocompact " #[fg=colour1][%s]" | |
136 set -g @fingers-highlight-format-nocompact "#[fg=colour5]%s" | |
137 set -g @fingers-pattern-0 "[[:digit:]][[:digit:]][[:digit:]]+" | |
138 | |
139 set -g @scroll-without-changing-pane "on" | 131 set -g @scroll-without-changing-pane "on" |
140 set -g @emulate-scroll-for-no-mouse-alternate-buffer "on" | 132 set -g @emulate-scroll-for-no-mouse-alternate-buffer "on" |
141 | 133 |
142 set -g @extrakto_fzf_tool "/home/zvandeva/.fzf/bin/fzf" | 134 run-shell ~/.tmux/plugins/tmux-better-mouse-mode/scroll_copy_mode.tmux |
143 | 135 run-shell ~/.tmux/plugins/tmux-yank/yank.tmux |
144 set -g @resurrect-strategy-nvim 'session' | |
145 set -g @resurrect-capture-pane-contents 'on' | |
146 | |
147 run-shell "~/.tmux/plugins/tpm/tpm" |