updated tmux config with vim navigation key-bindings

This commit is contained in:
tomit4 2021-11-26 11:58:02 -08:00
parent 6bc69426f3
commit d97999d10b

View file

@ -10,4 +10,12 @@ bind - split-window -v
# Enable mouse support
set -g mouse on
# Toggle bottom status bar with Ctrl-x + z
bind-key z set -g status
# Navigate tmux panes with Vim style navigation Ctrl-x + hjkl
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R