-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux_theme
executable file
·30 lines (27 loc) · 1.22 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
# This tmux statusbar config was created based on gruvbox colorscheme
set -g status "on"
set -g status-justify "left"
set -g status-left-length "100"
set -g status-right-length "100"
set -g status-right-attr "none"
set -g status-attr "none"
set -g status-left-attr "none"
set -g pane-active-border-fg "colour248"
set -g pane-border-fg "colour238"
set -g status-bg "colour235"
set -g message-fg "colour237"
set -g message-bg "colour248"
set -g message-command-fg "colour237"
set -g message-command-bg "colour248"
setw -g window-status-fg "colour237"
setw -g window-status-bg "colour235"
setw -g window-status-attr "none"
setw -g window-status-activity-bg "colour237"
setw -g window-status-activity-attr "none"
setw -g window-status-activity-fg "colour248"
setw -g window-status-separator ""
setw -g status-left ""
setw -g window-status-format "#[fg=colour229,bg=colour239] #I: #W "
setw -g window-status-current-format "#[fg=colour237,bg=colour142] #I:#[bold,fg=colour237,bg=colour142] #W "
set-option -g status-position top
set -g status-right '#[fg=colour250] #(echo #{pane_current_path} | ~/.utils/pwd-tmux "0.4") #[bg=colour72,bold, fg=colour237]#(cd #{pane_current_path}; git rev-parse --abbrev-ref HEAD | sed -e "s/^/ /g" -e "s/$/ /g")'