mirror of
https://github.com/cupcakearmy/dotfiles.git
synced 2024-12-22 08:16:32 +00:00
15 lines
305 B
Bash
15 lines
305 B
Bash
# switch panes using Alt-arrow without prefix
|
|
bind -n M-Left select-pane -L
|
|
bind -n M-Right select-pane -R
|
|
bind -n M-Up select-pane -U
|
|
bind -n M-Down select-pane -D
|
|
|
|
# switch panes using jkhl
|
|
bind h select-pane -L
|
|
bind l select-pane -R
|
|
bind j select-pane -U
|
|
bind k select-pane -D
|
|
|
|
# Mouse
|
|
set -g mouse on
|