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}"