-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
57 lines (43 loc) · 1.54 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
set-option -g prefix C-a
bind-key C-a send-prefix
unbind C-b
set -gs escape-time 1 # unit is milliseconds
bind-key r source-file ~/.tmux.conf \; display "Reloaded!"
bind-key | split-window -h
bind-key - split-window -v
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key -r H resize-pane -L 5 # -r means could be repeated without PREFIX
bind-key -r J resize-pane -D 5
bind-key -r K resize-pane -U 5
bind-key -r L resize-pane -R 5
set-option -gw mode-mouse off
set-option -g mouse-select-pane off
set-option -g mouse-resize-pane off
set-option -g mouse-select-window off
#-------- Configure Color Scheme --------
set-option -g default-terminal "screen-256color"
set-option -g status-fg white
set-option -g status-bg black
set-option -wg window-status-fg cyan
set-option -wg window-status-bg default
set-option -wg window-status-attr dim
set-option -wg window-status-current-fg white
set-option -wg window-status-current-bg red
set-option -wg window-status-current-attr bright
#set-option -g pane-border-fg green
#set-option -g pane-border-bg black
#set-option -g pane-active-border-fg white
#set-option -g pane-active-border-bg yellow
set-option -g message-fg white
set-option -g message-bg black
set-option -g message-attr bright
set-option -g status-utf8 on
set-option -g status-left-length 40
set-option -g status-justify centre
set-option -g status-left "#[fg=green]Session: #S"
set-option -g status-right "#[fg=cyan]%d-%b %R"
set-option -wg monitor-activity on
set-option -g visual-activity on