fix(tmux): change navigation bindings

This commit is contained in:
Oscar Wallberg
2024-08-23 16:04:45 +02:00
parent b2042b1100
commit 183f0ea978
+10
View File
@@ -189,6 +189,16 @@ bind-key -T copy-mode-vi 'v' send -X begin-selection # Be
bind-key -T copy-mode-vi 'C-v' send -X rectangle-toggle # Begin selection in copy mode.
bind-key -T copy-mode-vi 'y' send -X copy-selection # Yank selection in copy mode.
bind-key -r k select-pane -U
bind-key -r j select-pane -D
bind-key -r h select-pane -L
bind-key -r l select-pane -R
bind-key -r C-k resize-pane -U
bind-key -r C-j resize-pane -D
bind-key -r C-h resize-pane -L
bind-key -r C-l resize-pane -R
bind-key o last-window
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'