From d884496276b374f7628dcc3b92e63f287a8f1afc Mon Sep 17 00:00:00 2001 From: Oshgnacknak Date: Sat, 2 Oct 2021 13:40:25 +0200 Subject: [PATCH] Add _tmux.conf --- _tmux.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 _tmux.conf diff --git a/_tmux.conf b/_tmux.conf new file mode 100755 index 0000000..bc0df6a --- /dev/null +++ b/_tmux.conf @@ -0,0 +1,12 @@ +setw -g mode-keys vi # I especially like being able to search with /,? when in copy-mode +unbind C-b +set -g prefix C-w +bind C-w send-prefix +unbind-key j +bind-key j select-pane -D # Similar to 'C-w j' to navigate windows in Vim +unbind-key k +bind-key k select-pane -U +unbind-key h +bind-key h select-pane -L +unbind-key l +bind-key l select-pane -R