diff options
Diffstat (limited to '.config/tmux')
-rw-r--r-- | .config/tmux/tmux.conf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 3d0661c..6648bb3 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -9,16 +9,24 @@ set -sg escape-time 50 set -g default-terminal "screen-256color" set -as terminal-features ",xterm-256color:RGB" + ### tpm config from here onwards # general set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' +# use tmux-sessionizer instead # resurrect -set -g @plugin 'tmux-plugins/tmux-resurrect' +# set -g @plugin 'tmux-plugins/tmux-resurrect' # powerline set -g @plugin 'erikw/tmux-powerline' +### others +# https://github.com/jrmoulton/tmux-sessionizer +bind C-o display-popup -E "tms" +bind C-j display-popup -E "tms switch" +bind C-w display-popup -E "tms windows" + ### initialize tpm (keep this line at the very bottom of tmux.conf) run '/usr/share/tmux-plugin-manager/tpm' |