From e434919210387a8210473c971b6dee31355fda25 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Tue, 3 Jan 2023 11:47:31 -0800 Subject: [PATCH] Add vim-like navigation keys for pane --- tmux/.config/tmux/tmux.conf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index 84d234d..551bfab 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -8,12 +8,18 @@ set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'dracula/tmux' -# dracula customizations +# Dracula customizations set -g @dracula-plugins "weather time" set -g @dracula-show-powerline true set -g @dracula-show-fahrenheit true 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 set -g default-terminal "tmux-256color"