diff options
-rw-r--r-- | %HOME%/.tmux.conf | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/%HOME%/.tmux.conf b/%HOME%/.tmux.conf index 268025a..f3fa5e9 100644 --- a/%HOME%/.tmux.conf +++ b/%HOME%/.tmux.conf @@ -141,8 +141,14 @@ if-shell 'uname | grep -q -F Linux && which xsel' { # Appearance # ---------- -# Highlight active window panes/windows, might not work so well depending on -# your color scheme. -set-window-option -g window-status-current-style bg=red +# Might not work so well depending on your color scheme. + +set -g status-style fg=white,bg=blue +set-window-option -g window-status-current-style fg=black,bg=white +#set-window-option -g window-status-current-style fg=terminal,bg=colour234 + +set-window-option -g pane-border-style fg=colour248,bg=colour232 +set-window-option -g pane-active-border-style fg=colour248,bg=colour234 + set-window-option -g window-style bg=colour232 set-window-option -g window-active-style bg=colour234 |