-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
executable file
·34 lines (27 loc) · 1.11 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
unbind C-b
set-option -g prefix 'C-\'
setw -g mode-keys emacs
# default statusbar colors
set-option -g status-bg colour235 #base02
set-option -g status-fg colour67
# Reload key
bind r source-file ~/.tmux.conf \; display-message "Configuration reloaded"
bind | split-window -h
bind - split-window -v
# default window title colors
set-window-option -g window-status-fg cyan
set-window-option -g window-status-bg default
set-window-option -g window-status-attr dim
setw -g window-status-format " #I #W "
# active window title colors
set-window-option -g window-status-current-fg colour235
set-window-option -g window-status-current-bg colour175
set-window-option -g window-status-current-attr bright
setw -g window-status-current-format " #I #W "
# command/message line colors
set-option -g message-fg colour235
set-option -g message-bg colour140
set-option -g message-attr bright
set-option -g status-right-length 60
set-option -g status-right "#{?client_prefix,#[reverse]启动#[noreverse] ,} #[fg=blue,bold][CPU #(~/.bash-git/getCpuUsage.sh) | MEM #(~/.bash-git/getMemUsage.sh)]#[default] %H:%M:%S %d-%b-%y "
# set status-interval 1