diff --git a/.tmux.conf b/.tmux.conf index 9e07ae7..ef4a68a 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -74,6 +74,12 @@ bind-key W command-prompt -p "Name of new window: " "new-window -n '%%'" bind-key S command-prompt -p "Name of new session: " "new-session -s '%%'" +# Quick pane resizing using arrow keys +bind-key -r H resize-pane -L 5 +bind-key -r J resize-pane -D 5 +bind-key -r K resize-pane -U 5 +bind-key -r L resize-pane -R 5 + # reload config bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."