15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
# https://github.com/tmux/tmux/wiki/FAQ
|
|
|
|
# Split panes using | and -
|
|
bind | split-window -h
|
|
bind - split-window -v
|
|
|
|
# Switch panes using Alt 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
|
|
|
|
# Color
|
|
set -g default-terminal "tmux-256color"
|