From 290e77189aee8c35e36a86b1e1706a5116ff1851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Fri, 2 Jul 2021 15:48:55 +0200 Subject: [PATCH] Added vim shotcut for tmux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Woźniak --- .tmux.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index b8c4803..0841907 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -27,6 +27,10 @@ bind - split-window -v bind _ split-window -h bind > swap-pane -D # swap current pane with the next one bind < swap-pane -U # swap current pane with the previous one +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R bind -r H resize-pane -L 2 bind -r J resize-pane -D 2 bind -r K resize-pane -U 3