From 9f8be157cedeae2f76e0e6281ea5378023734744 Mon Sep 17 00:00:00 2001 From: Carlos Sousa Date: Sat, 28 Dec 2024 14:55:36 +0100 Subject: [PATCH] add prefix > hjkl to move between panes --- home/tmux.conf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/home/tmux.conf b/home/tmux.conf index 6e9e306..323086c 100644 --- a/home/tmux.conf +++ b/home/tmux.conf @@ -2,7 +2,13 @@ set -g mouse on ## use vim keybinds -set -g mode-keys vi +set -g mode-keys vi + +## use vim keys to move between panes +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R # make a hot reload possible bind r source-file ~/.tmux.conf