add prefix > hjkl to move between panes

This commit is contained in:
Carlos Sousa 2024-12-28 14:55:36 +01:00
parent 07405f88cc
commit 9f8be157ce

View File

@ -2,7 +2,13 @@
set -g mouse on set -g mouse on
## use vim keybinds ## use vim keybinds
set -g mode-keys vi set -g mode-keys vi
## use vim keys to move between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# make a hot reload possible # make a hot reload possible
bind r source-file ~/.tmux.conf bind r source-file ~/.tmux.conf