diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 4a7c8bb..1ff0a57 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -38,11 +38,11 @@ set-option -g allow-rename off set -g mouse on set -g focus-events on -# Use Alt-arrow keys without prefix key to switch panes -bind -n M-h select-pane -L -bind -n M-l select-pane -R -bind -n M-k select-pane -U -bind -n M-j select-pane -D +# Use Ctrl-arrow keys without prefix key to switch panes +bind -n C-Left select-pane -L +bind -n C-Right select-pane -R +bind -n C-Up select-pane -U +bind -n C-Down select-pane -D # Pane resizing with HJKL bind H resize-pane -L 10