501
|
1 set -g repeat-time 0
|
|
2 set -g status-bg cyan
|
|
3 set -g status-fg white
|
|
4
|
|
5 set -g status-left '#[bg=white,fg=black] #S #[default] '
|
|
6
|
|
7 set -g status-right '#[bg=white,fg=black] #H #[bg=black,fg=white] %b-%d %H:%M '
|
|
8
|
|
9 set -g status-utf8 on
|
|
10 setw -g utf8 on
|
|
11
|
|
12 set -g pane-active-border-fg cyan
|
|
13
|
|
14 set -g set-titles on
|
|
15 set -g set-titles-string '[#S] #I:#W #T'
|
|
16
|
|
17 setw -g window-status-attr bold
|
|
18 setw -g window-status-current-attr bold
|
|
19 setw -g window-status-current-bg black
|
|
20 setw -g window-status-current-fg white
|
|
21
|
|
22 bind-key c new-window -c "#{pane_current_path}"
|
|
23 bind-key '"' split-window -c "#{pane_current_path}"
|
|
24 bind-key % split-window -h -c "#{pane_current_path}"
|