-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmux.conf
More file actions
45 lines (32 loc) · 1.04 KB
/
tmux.conf
File metadata and controls
45 lines (32 loc) · 1.04 KB
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
set-option -g prefix C-a
bind-key C-a last-window
set -g base-index 1
set -s escape-time 0 #faster command sequence
set -g pane-base-index 1
setw -g aggressive-resize on
bind r source-file ~/.tmux.conf \; display "source-file ~/.tmux.conf"
set-option -g history-limit 9999
set -g history-limit 9999
# statusbar
set-option -g status on
set -g status-interval 5
# visual notification of activity in other windows
setw -g monitor-activity on
set -g visual-activity on
# set color for status bar
set-option -g status-bg brightblue
set-option -g status-fg black
# set window list colors - red for active and cyan for inactive
set-window-option -g window-status-style fg=white,bg=brightblue,bold
set-window-option -g window-status-current-style fg=white,bg=black,dim,bold
# show host name and IP address on left side of status bar
set -g status-left-length 70
set -g status-left "#[bg=red]#[fg=white,bold] #h "
set -g status-right ""
set -g mouse off
bind m \
set -g mouse on \;\
display 'Mouse: ON'
bind M \
set -g mouse off \;\
display 'Mouse: OFF'