.tmux.conf: Bring in solarized tmux theme
From https://github.com/seebi/tmux-colors-solarized
This commit is contained in:
parent
6b7c49cd0b
commit
50c7be3603
44
.tmux.conf
44
.tmux.conf
@ -96,21 +96,9 @@ set-option -g visual-bell off
|
||||
|
||||
# status bar
|
||||
set-option -g status-justify left
|
||||
set-option -g status-bg blue
|
||||
set-option -g status-fg white
|
||||
set-option -g status-left ''
|
||||
set-option -g status-right '#[fg=colour47]#H #[fg=red]#(cut -d " " -f 1-3 /proc/loadavg) #[fg=colour227]%Y-%m-%d %H:%M#[default]'
|
||||
|
||||
# terminal messages, like "bell in terminal 1"
|
||||
set-option -g message-fg black
|
||||
set-option -g message-bg white
|
||||
|
||||
# Highlight active window
|
||||
set-window-option -g window-status-current-fg white
|
||||
set-window-option -g window-status-current-bg red
|
||||
set-window-option -g window-status-bell-attr default
|
||||
set-window-option -g window-status-bell-fg yellow
|
||||
|
||||
# scrollback buffer
|
||||
set-option -g history-limit 4096
|
||||
|
||||
@ -118,3 +106,35 @@ set-option -g history-limit 4096
|
||||
# According to the tmux FAQ this MUST be "screen" or a derivative
|
||||
# http://tmux.svn.sourceforge.net/viewvc/tmux/trunk/FAQ
|
||||
set-option -g default-terminal "screen-256color"
|
||||
|
||||
#### COLOUR (Solarized dark)
|
||||
|
||||
# default statusbar colors
|
||||
set-option -g status-bg black #base02
|
||||
set-option -g status-fg yellow #yellow
|
||||
set-option -g status-attr default
|
||||
|
||||
# default window title colors
|
||||
set-window-option -g window-status-fg brightblue #base0
|
||||
set-window-option -g window-status-bg default
|
||||
#set-window-option -g window-status-attr dim
|
||||
|
||||
# active window title colors
|
||||
set-window-option -g window-status-current-fg brightred #orange
|
||||
set-window-option -g window-status-current-bg default
|
||||
#set-window-option -g window-status-current-attr bright
|
||||
|
||||
# pane border
|
||||
set-option -g pane-border-fg black #base02
|
||||
set-option -g pane-active-border-fg brightgreen #base01
|
||||
|
||||
# message text
|
||||
set-option -g message-bg black #base02
|
||||
set-option -g message-fg brightred #orange
|
||||
|
||||
# pane number display
|
||||
set-option -g display-panes-active-colour blue #blue
|
||||
set-option -g display-panes-colour brightred #orange
|
||||
|
||||
# clock
|
||||
set-window-option -g clock-mode-colour green #green
|
||||
|
Loading…
Reference in New Issue
Block a user