-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtmux.conf
33 lines (25 loc) · 831 Bytes
/
tmux.conf
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
set-option -g visual-bell on
set-option -g bell-action any
set-option -g visual-activity on
#set-option -g visual-content on
set-option -g history-limit 5000
#set -g set-titles
#set -g set-titles-string '#h #S:#W.#P'
set-option -g window-status-current-format '#I:#W#F'
set-option -g window-status-format '#I:#W #{pane_current_command}#F'
set-option -g status-interval 1
set -g default-terminal screen-256color
set-window-option -g mode-keys vi
bind -r h select-pane -L
bind -r j select-pane -D
bind -r k select-pane -U
bind -r l select-pane -R
bind -r K resize-pane -U
bind -r J resize-pane -D
bind -r H resize-pane -L
bind -r L resize-pane -R
bind -r C-K swap-pane -s '{up-of}'
bind -r C-J swap-pane -s '{down-of}'
bind -r C-H swap-pane -s '{left-of}'
bind -r C-L swap-pane -s '{right-of}'
source-file ~/.tmux.conf.local