21 lines
509 B
Bash
21 lines
509 B
Bash
bind-key r source-file "~/.tmux.conf"
|
|
|
|
bind-key -n c-left select-pane -L
|
|
bind-key -n c-down select-pane -D
|
|
bind-key -n c-up select-pane -U
|
|
bind-key -n c-right select-pane -R
|
|
|
|
bind-key -n m-left resize-pane -L
|
|
bind-key -n m-down resize-pane -D
|
|
bind-key -n m-up resize-pane -U
|
|
bind-key -n m-right resize-pane -R
|
|
|
|
bind-key -n m-\; last-pane
|
|
|
|
set-option -g prefix m-x
|
|
bind-key m-x send-prefix
|
|
|
|
set-option -g mouse on
|
|
set-option -ga terminal-overrides ",*256col*:Tc"
|
|
set-option -g default-terminal "tmux-256color"
|