From a634b645247ce04bda428192fe2e27d6386fcf6d Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 18 Sep 2021 23:35:55 -0400 Subject: [PATCH] Add TMUX config file --- config/tmux.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config/tmux.conf diff --git a/config/tmux.conf b/config/tmux.conf new file mode 100644 index 0000000..2ef2a2f --- /dev/null +++ b/config/tmux.conf @@ -0,0 +1,15 @@ +# Enable VI emulation keys. +set-window-option -g mode-keys vi +set-window-option -g status-keys vi + +# Selection with VI keys. +bind -r h select-pane -L +bind -r j select-pane -D +bind -r k select-pane -U +bind -r l select-pane -R + +# Resize with VI keys. +bind -r C-h resize-pane -L 1 +bind -r C-j resize-pane -D 1 +bind -r C-k resize-pane -U 1 +bind -r C-l resize-pane -R 1