This repository has been archived by the owner on Aug 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
62 lines (44 loc) · 1.4 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
set -g default-terminal "screen-256color"
set-option -g prefix C-q
setw -g aggressive-resize on
set -g status-bg colour251
set -g status-fg colour232
set -g status-left ' #[fg=grey]'
set -g status-right ' #[fg=grey]'
set-option -g status-keys vi
set-window-option -g window-status-current-bg colour234
set-window-option -g window-status-current-fg colour251
set -g set-titles on
set -g set-titles-string "#S:#I.#P-#W"
set-window-option -g automatic-rename on
setw -g mode-keys vi
set-option -g mouse-utf8 off
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind < resize-pane -L 4
bind > resize-pane -R 4
bind - resize-pane -D 4
bind + resize-pane -U 4
set-option -g mouse on
set-option -g pane-border-fg colour242
set-option -g pane-active-border-fg colour251
set-option -g renumber-windows on
set-option -g message-bg colour251
set-option -g message-fg colour234
set-option -g mode-bg colour190
set-option -g mode-fg colour232
set -g utf8 on
set -g status-utf8 on
set-window-option -g xterm-keys
set-window-option -g window-status-activity-bg colour190
set-window-option -g window-status-activity-fg colour232
setw -g monitor-activity on
set -g visual-activity on
set -g history-limit 16383
# address vim mode switching delay (http://superuser.com/a/252717/65504)
set -s escape-time 0
# plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'