tmux: Use gruvbox dark color scheme
Taken from https://github.com/egel/tmux-gruvbox
This commit is contained in:
parent
1e1e4b8c77
commit
47a52ccbc9
1 changed files with 48 additions and 7 deletions
|
@ -89,13 +89,54 @@ bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
|
||||||
# alacritty as default terminal. This effects color rendering.
|
# alacritty as default terminal. This effects color rendering.
|
||||||
set-option -g default-terminal "alacritty"
|
set-option -g default-terminal "alacritty"
|
||||||
|
|
||||||
set-option -g status-style fg=colour187,bg=colour237
|
# Gruvbox dark color scheme
|
||||||
set-window-option -g window-status-style fg=colour187,bg=colour237
|
set-option -g status "on"
|
||||||
set-window-option -g window-status-current-style fg=colour161,bg='#000000'
|
|
||||||
set-option -g pane-border-style fg='#505050',bg='#101010'
|
# Default statusbar color
|
||||||
set-option -g pane-active-border-style fg='#87d700',bg='#101010'
|
set-option -g status-style bg=colour237,fg=colour223 # bg=bg1, fg=fg1
|
||||||
set-option -g mode-style fg=colour187,bg='#000000'
|
|
||||||
set-option -g message-style fg=colour187,bg='#000000'
|
# Default window title colors
|
||||||
|
set-window-option -g window-status-style bg=colour214,fg=colour237 # bg=yellow, fg=bg1
|
||||||
|
|
||||||
|
# Default window with an activity alert
|
||||||
|
set-window-option -g window-status-activity-style bg=colour237,fg=colour248 # bg=bg1, fg=fg3
|
||||||
|
|
||||||
|
# Active window title colors
|
||||||
|
set-window-option -g window-status-current-style bg=red,fg=colour237 # fg=bg1
|
||||||
|
|
||||||
|
# Pane border
|
||||||
|
set-option -g pane-active-border-style fg=colour250 #fg2
|
||||||
|
set-option -g pane-border-style fg=colour237 #bg1
|
||||||
|
|
||||||
|
# Message infos
|
||||||
|
set-option -g message-style bg=colour239,fg=colour223 # bg=bg2, fg=fg1
|
||||||
|
|
||||||
|
# Writing commands inactive
|
||||||
|
set-option -g message-command-style bg=colour239,fg=colour223 # bg=fg3, fg=bg1
|
||||||
|
|
||||||
|
# Pane number display
|
||||||
|
set-option -g display-panes-active-colour colour250 #fg2
|
||||||
|
set-option -g display-panes-colour colour237 #bg1
|
||||||
|
|
||||||
|
# Clock
|
||||||
|
set-window-option -g clock-mode-colour colour109 #blue
|
||||||
|
|
||||||
|
# Bell
|
||||||
|
set-window-option -g window-status-bell-style bg=colour167,fg=colour235 # bg=red, fg=bg
|
||||||
|
|
||||||
|
## Theme settings mixed with colors (unfortunately, but there is no cleaner way)
|
||||||
|
set-option -g status-justify "left"
|
||||||
|
set-option -g status-left-style none
|
||||||
|
set-option -g status-left-length "80"
|
||||||
|
set-option -g status-right-style none
|
||||||
|
set-option -g status-right-length "80"
|
||||||
|
set-window-option -g window-status-separator ""
|
||||||
|
|
||||||
|
set-option -g status-left "#[bg=colour241,fg=colour248] #S #[bg=colour237,fg=colour241,nobold,noitalics,nounderscore]"
|
||||||
|
set-option -g status-right "#[bg=colour237,fg=colour239 nobold, nounderscore, noitalics]#[bg=colour239,fg=colour246] %Y-%m-%d %H:%M #[bg=colour239,fg=colour248,nobold,noitalics,nounderscore]#[bg=colour248,fg=colour237] #h "
|
||||||
|
|
||||||
|
set-window-option -g window-status-current-format "#[bg=colour214,fg=colour237,nobold,noitalics,nounderscore]#[bg=colour214,fg=colour239] #I #[bg=colour214,fg=colour239,bold] #W #[bg=colour237,fg=colour214,nobold,noitalics,nounderscore]"
|
||||||
|
set-window-option -g window-status-format "#[bg=colour239,fg=colour237,noitalics]#[bg=colour239,fg=colour223] #I #[bg=colour239,fg=colour223] #W #[bg=colour237,fg=colour239,noitalics]"
|
||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
run-shell '~/.tmux/plugins/tmux-resurrect/resurrect.tmux'
|
run-shell '~/.tmux/plugins/tmux-resurrect/resurrect.tmux'
|
||||||
|
|
Loading…
Reference in a new issue