feat: add resize-pane to tmux.conf

This commit is contained in:
2026-04-29 14:38:00 -04:00
parent ffe45b43c5
commit 63dccc0025

View File

@@ -22,6 +22,12 @@ bind-key j select-pane -D
bind-key k select-pane -U bind-key k select-pane -U
bind-key l select-pane -R 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 # Split panes in the same directory
bind '"' split-window -v -c "#{pane_current_path}" bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"