-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux-theme
45 lines (34 loc) · 1.04 KB
/
tmux-theme
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
# Current window status
set -g window-status-current-bg colour24
set -g window-status-current-fg colour232
# Window with activity status
set -g window-status-activity-bg colour31 # fg and bg are flipped here due to
set -g window-status-activity-fg colour233 # a bug in tmux
# dimming inactive windows
setw -g window-active-style fg=colour7,bg=black
setw -g window-style fg=colour249,bg=colour234
# Window separator
set -g window-status-separator ""
# Window status alignment
#set -g status-justify centre
# Pane border
set -g pane-border-bg default
set -g pane-border-fg colour238
# Active pane border
set -g pane-active-border-bg default
set -g pane-active-border-fg colour24
# Pane number indicator
set -g display-panes-colour colour245
set -g display-panes-active-colour white
# Clock mode
set -g clock-mode-colour colour24
set -g clock-mode-style 24
# Message
set -g message-bg colour24
set -g message-fg white
# Command message
set -g message-command-bg colour233
set -g message-command-fg black
# Mode
set -g mode-bg colour24
set -g mode-fg colour231