From 2b479aa52a769f4c4d20ff77ab7c12a334417a2c Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Tue, 2 Nov 2021 15:17:28 +0500 Subject: [PATCH] Add Tmux config --- tmux/tmux.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tmux/tmux.conf diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..6d8cc9b --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,12 @@ +unbind C-b +set-option -g prefix C-x +set -g base-index 1 # Windows +set -g default-terminal 'screen-256color' + +bind-key -n C-h previous-window +bind-key -n C-l next-window + +bind-key -n M-h select-pane -L +bind-key -n M-j select-pane -D +bind-key -n M-k select-pane -U +bind-key -n M-l select-pane -R