From 63dccc0025308933a943399e0d77558abe1a2f26 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Wed, 29 Apr 2026 14:38:00 -0400 Subject: [PATCH] feat: add resize-pane to tmux.conf --- tmux/.tmux.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 5e54763..010e6e5 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -22,6 +22,12 @@ bind-key j select-pane -D bind-key k select-pane -U bind-key l select-pane -R +# resize panes +bind -r H resize-pane -L +bind -r J resize-pane -D +bind -r K resize-pane -U +bind -r L resize-pane -R + # Split panes in the same directory bind '"' split-window -v -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"