diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-12-18 08:10:36 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-12-18 08:23:34 +0300 |
commit | b5a5b27b1ed9fc996ad9fde4127b6b67211a05a7 (patch) | |
tree | 203c3aabd4061550488d265785eb9ee5363b32a0 /%HOME% | |
parent | .bashrc: better nested-tmux check (diff) | |
download | linux-home-b5a5b27b1ed9fc996ad9fde4127b6b67211a05a7.tar.gz linux-home-b5a5b27b1ed9fc996ad9fde4127b6b67211a05a7.zip |
tmux: adjust colors
Diffstat (limited to '%HOME%')
-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 |