From 7ee4b38a1063aab1451dbec691e8a0771218e6db Mon Sep 17 00:00:00 2001 From: Sheldon Lee Date: Thu, 3 Dec 2020 17:54:50 +0800 Subject: [PATCH] Added comments and vim binds for pane navigation. --- .tmux.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index bb38482..95a4c52 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,6 +1,16 @@ +# terminal set -g default-terminal "alacritty" + +# vi mode set-window-option -g mode-keys vi + # remap prefix from 'C-b' to 'C-a' unbind C-b set-option -g prefix C-a bind-key C-a send-prefix + +# vim binds for pane navigation +bind-key h select-pane -L +bind-key j select-pane -D +bind-key k select-pane -U +bind-key l select-pane -R