Add vim-like navigation keys for pane

This commit is contained in:
Eric Torres 2023-01-03 11:47:31 -08:00
parent 2e8b0acf40
commit e434919210

View File

@ -8,12 +8,18 @@ set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux' set -g @plugin 'dracula/tmux'
# dracula customizations # Dracula customizations
set -g @dracula-plugins "weather time" set -g @dracula-plugins "weather time"
set -g @dracula-show-powerline true set -g @dracula-show-powerline true
set -g @dracula-show-fahrenheit true set -g @dracula-show-fahrenheit true
set -g @dracula-military-time false set -g @dracula-military-time false
# vim-like navigation
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Terminal appearance # Terminal appearance
set -g default-terminal "tmux-256color" set -g default-terminal "tmux-256color"