tmux.conf: Use monokai theme
This commit is contained in:
parent
a3f84d9493
commit
35f86040be
1 changed files with 27 additions and 0 deletions
27
tmux.conf
27
tmux.conf
|
@ -47,6 +47,33 @@ bind -n M-Down select-pane -D
|
|||
set-option -g default-terminal "tmux-256color"
|
||||
set-option -sa terminal-overrides ',tmux-256color:RGB'
|
||||
|
||||
# Status Bar Colors
|
||||
set-option -g status-attr dim
|
||||
set-option -g status-bg colour237 # slightly brighter than molokai vim tabs
|
||||
set-option -g status-fg colour187 # monokai yellow
|
||||
|
||||
# Window Title Tab Colors
|
||||
set-window-option -g window-status-attr dim
|
||||
set-window-option -g window-status-bg colour237 # brighter gray
|
||||
set-window-option -g window-status-fg colour187 # monokai yellow
|
||||
set-window-option -g window-status-current-attr dim
|
||||
#set-window-option -g window-status-current-bg colour161 # monokai pink
|
||||
#set-window-option -g window-status-current-fg '#000000'
|
||||
set-window-option -g window-status-current-bg '#000000'
|
||||
set-window-option -g window-status-current-fg colour161 # monokai pink
|
||||
|
||||
# Pane Border Colors
|
||||
set-option -g pane-active-border-bg '#101010'
|
||||
set-option -g pane-active-border-fg '#87d700' # monokai-green
|
||||
set-option -g pane-border-bg '#101010'
|
||||
set-option -g pane-border-fg '#505050'
|
||||
|
||||
# TODO: Not sure what these are.
|
||||
set-option -g mode-bg '#000000'
|
||||
set-option -g mode-fg colour187 # monokai yellow
|
||||
set-option -g message-bg '#000000'
|
||||
set-option -g message-fg colour187 # monokai yel
|
||||
|
||||
# Plugins
|
||||
run-shell '~/.tmux/plugins/tmux-resurrect/resurrect.tmux'
|
||||
run-shell '~/.tmux/plugins/tmux-continuum/continuum.tmux'
|
||||
|
|
Loading…
Reference in a new issue