-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
74 lines (61 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
unbind C-b
set-option -g prefix C-a
bind-key c neww -n 'Command Window' #changes default name of new window, mostly unnecessary
bind-key C-a send-prefix
bind-key R source-file ~/.tmux/normal
bind-key N splitw -vb -l 25
bind-key P resize-pane -t 1 -y 35
set -g history-limit 100000
set -sg escape-time 0
setw -g aggressive-resize on
set-option -g allow-rename off
# loud or quiet?
set-option -g visual-activity off
set-option -g visual-bell off
set-option -g visual-silence off
set-window-option -g monitor-activity off
set-option -g bell-action any
set -g default-terminal "screen-256color"
# The modes {
setw -g clock-mode-colour colour135
setw -g mode-attr bold
setw -g mode-fg colour196
setw -g mode-bg colour238
# }
# The panes {
set -g pane-border-bg colour235
set -g pane-border-fg colour238
set -g pane-active-border-bg colour236
set -g pane-active-border-fg colour51
# }
# The statusbar {
set -g status-justify left
set -g status-interval 1
set -g status-position bottom
set -g status-bg colour234
set -g status-fg colour32
set -g status-attr dim
set -g status-left '#[fg=colour255,bold][#[fg=colour040]#(whoami) #[fg=colour255]@ #[fg=colour196]#H#[fg=colour255]]'
set -g status-right '#[fg=colour255]%a %m/%d/%G #[fg=colour255]%l:%M:%S %p'
#set -g status-right "#[fg=colour160]#(date +'%a %m/%d/%y %r')"
set -g status-right-length 100
set -g status-left-length 25
setw -g window-status-current-fg colour87
setw -g window-status-current-bg colour237
setw -g window-status-current-attr bold
setw -g window-status-current-format ' #I #[fg=colour255]#W '
setw -g window-status-fg colour124
setw -g window-status-bg colour234
setw -g window-status-attr none
setw -g window-status-format ' #I #[fg=colour240]#W#[fg=colour244] '
setw -g window-status-bell-attr bold
setw -g window-status-bell-fg colour255
setw -g window-status-bell-bg colour196
# }
# The messages {
set -g message-attr bold
set -g message-fg colour232
set -g message-bg colour166
set -g message-command-fg blue
set -g message-command-bg black
# }