From 9f5478d75df47dfd5f8258146c0001eda2481888 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Wed, 14 Feb 2024 02:46:19 +0100 Subject: [PATCH] tmux: finer resizing of panes --- config/tmux/tmux.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index b0d04cf..5b49e2f 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -26,10 +26,10 @@ bind k select-pane -U bind l select-pane -R # Resize panes -bind -r C-h resize-pane -L 5 -bind -r C-j resize-pane -D 5 -bind -r C-k resize-pane -U 5 -bind -r C-l resize-pane -R 5 +bind -r C-h resize-pane -L 2 +bind -r C-j resize-pane -D 2 +bind -r C-k resize-pane -U 2 +bind -r C-l resize-pane -R 2 # Arrangement of panes bind b break-pane \; select-pane -m \; last-window