1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| set -g mouse on
bind h select-pane -L bind j select-pane -D bind k select-pane -U bind l select-pane -R
set-option -g prefix C-a unbind-key C-a bind-key C-a send-prefix
bind -n C-n new-window
bind -n C-w kill-pane
bind -n S-Left previous-window bind -n S-Right next-window
bind-key v split-window -h bind-key h split-window -v
bind-key r source-file ~/.tmux.conf \; display-message "tmux.conf reloaded"
bind -n C-l next-layout
bind B break-pane
|