add hjkl navigation to tmux

This commit is contained in:
Paul Trowbridge 2020-09-11 23:48:33 -04:00
parent e1fe075a8b
commit bd26fd665e

View File

@ -1 +1,6 @@
set -g default-terminal 'screen-256color' set -g default-terminal 'screen-256color'
#attempt to navigate panes like vim
bind -r h select-pane -L # move left
bind -r j select-pane -D # move down
bind -r k select-pane -U # move up
bind -r l select-pane -R # move right