diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 1764e5aa..bd94a5f2 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -62,6 +62,20 @@ bind - split-window -v -c "#{pane_current_path}" # New windows in same directory bind c new-window -c "#{pane_current_path}" +# Pane navigation +bind -n C-S-Left select-pane -L +bind -n C-S-Right select-pane -R +bind -n C-S-Up select-pane -U +bind -n C-S-Down select-pane -D + +# Window navigation +bind -n C-M-Left previous-window +bind -n C-M-Right next-window + +# Session navigation +bind -n C-M-Up switch-client -p +bind -n C-M-Down switch-client -n + # Sessions bind C new-session bind X kill-session