From 3f5bf6d4d1fb4ae9e79bfc3e11d5c4c8a63bedba Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 11 Mar 2022 12:39:46 +0530 Subject: [PATCH] tmux: Use arrow keys for pane resizing --- tmux/.tmux.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 473437a..fb01e16 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -44,11 +44,11 @@ bind -n C-Right select-pane -R bind -n C-Up select-pane -U bind -n C-Down select-pane -D -# Pane resizing with HJKL -bind H resize-pane -L 10 -bind J resize-pane -D 10 -bind K resize-pane -U 10 -bind L resize-pane -R 10 +# Pane resizing with arrow keys +bind Left resize-pane -L 10 +bind Down resize-pane -D 10 +bind Up resize-pane -U 10 +bind Right resize-pane -R 10 # Move windows back/forward bind -n S-left swap-window -t -1