diff options
author | Aaron LI <aly@aaronly.me> | 2018-02-04 11:04:04 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-02-04 11:04:04 +0800 |
commit | 0a78ecac74709ff02339ee2fc5843365639f3b4f (patch) | |
tree | 54db0dc8a8741e5fbeacb57c5e429184dea6f961 /_tmux.conf | |
parent | 9ebd34c528579975ff61ac61723d6d58bdb8a5ee (diff) | |
download | dotfiles-0a78ecac74709ff02339ee2fc5843365639f3b4f.tar.bz2 |
tmux: tweak window status styles
Diffstat (limited to '_tmux.conf')
-rw-r--r-- | _tmux.conf | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -177,12 +177,14 @@ set -g status-right \ # Window status setw -g window-status-separator " " setw -g window-status-style "fg=blue,bold" -setw -g window-status-current-style "fg=blue,bold,reverse" +setw -g window-status-current-style "fg=green,bold,reverse" +setw -g window-status-last-style "fg=magenta,bold" +setw -g window-status-activity-style "fg=yellow,bold" setw -g window-status-bell-style "fg=red,bold" setw -g window-status-format \ "#[fg=yellow]#I:#[default]#{=10:window_name}#F" setw -g window-status-current-format \ - "#[fg=yellow]#I:#[fg=blue]#W#[fg=green]#F#[default]" + "#[fg=yellow]#I:#[fg=default]#W#F" # Window mode setw -g mode-style "fg=yellow,bg=default,bold" |