From 42f2c3a4a4e94b41f89471822489b981fc177156 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Thu, 14 Nov 2024 08:05:28 -0500 Subject: [PATCH] Update tmux config for hjkl navigation --- .tmux.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 5c1bb54..6c1a251 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -8,3 +8,8 @@ bind r source-file ~/.tmux.conf # Enable mouse usage set -g mouse on + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R