-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
65 lines (54 loc) · 2.27 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
# Original Source:
# https://github.com/jonasjacek/colorcli
# Set prefix key
unbind-key C-b
bind y send-prefix
set -g prefix ^y
# DESIGN: 256 COLOR SUPPORT
setw -g default-terminal "screen-256color"
# DESIGN: PANES
set -g pane-active-border-style fg=colour22,bg=colour250
set -g pane-border-style fg=colour250,bg=colour250
# DESIGN: MESSAGING
set -g message-command-style fg=blue,bg=black
set -g message-style fg=colour59,bg=colour226
# DESIGN: MODES
setw -g clock-mode-colour colour135
set -g mode-style fg=colour160,bold,bg=colour238,bold
# DESIGN: STATUSBAR BOTTOM
#set -g status-style fg=white,bg=colour250
set -g status-style fg=white,bg=green
#set -g status-style fg=white,bg=black
set -g status-interval 3600
set -g status-position bottom
# DESIGN: WINDOW STATUS
# new: window-active-style
# new: window-status-activity-style
# new: window-status-bell-style fg=white,bg=black
# new: window-status-current-style
# new: window-status-last-style
# new: window-status-style
# new: window-style
setw -g window-status-format " #F#I:#W#F "
setw -g window-status-current-format " #F#I:#W#F "
#setw -g window-status-format "#[fg=white]#[bg=colour59] #I #[fg=colour59]#[bg=colour254] #W "
#setw -g window-status-current-format "#[fg=white]#[bg=colour24] #I #[fg=colour24]#[bg=colour254] #W "
setw -g window-status-format "#[fg=white]#[bg=colour59] #I #[fg=colour59]#[bg=colour254] #W "
setw -g window-status-current-format "#[fg=white]#[bg=colour22] #I #[fg=colour22]#[bg=colour254] #W "
#setw -g window-status-format "#[fg=white]#[bg=colour59] #I #[fg=colour59]#[bg=colour254] #W "
#setw -g window-status-current-format "#[fg=white]#[bg=green] #I #[fg=green]#[bg=colour254] #W "
#setw -g window-status-current-bg pink
#setw -g window-status-current-fg grey
#setw -g window-status-current-attr dim
#setw -g window-status-bg green
#setw -g window-status-fg black
set -g status-right-length 0
set -g status-left-length 20
# items left to the tabs
set -g status-left ''
# items right to the tabs
#set -g status-right '#[fg=colour59,bg=colour250,bold] %y/%m/%d |#[fg=colour59,bg=colour250,bold] %H:%M:%S '
#set -g status-right '#[fg=colour22,bg=green,bold] %F |#[fg=colour22,bg=green,bold] %T '
set -g status-right ''
setw -g window-status-bell-style fg=red,bold
set-window-option -g window-status-bell-style bg=colour160