16 lines
306 B
Bash
16 lines
306 B
Bash
# Switch panes with alt + arrows
|
|
|
|
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
|
|
|
|
# enable mouse mode
|
|
set -g mouse on
|
|
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
# don't rename windows automatically
|
|
set-option -g allow-rename off
|