diff options
| author | Benjamin Linskey | 2026-06-07 16:04:24 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-06-07 16:06:53 -0400 |
| commit | 9360b065b2525549c59da6a9b045b8e894cd7adb (patch) | |
| tree | 2790ef45f829d27884bf4474c00d5a2db7b1a9d1 | |
| parent | eace137b129e68d5d3801747086f6c7b59395b50 (diff) | |
| download | dotfiles-9360b065b2525549c59da6a9b045b8e894cd7adb.tar.gz | |
tmux: Update styling
Change colors to white on dark purple and make selected window label bold.
| -rw-r--r-- | .tmux.conf | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -14,8 +14,12 @@ set -g status-justify left set -g status-left-length 20 set -g status-left " [#h:#S] " set -g status-right "" -set -g status-style "fg=black bg=white" -set -g message-style "fg=black bg=white" + +# Note that these only work with my current terminal colors, where "bright +# cyan" is actually a dark purple. +set -g status-style "fg=white bg=brightcyan" +set -g window-status-current-style "fg=white,bold bg=brightcyan" +set -g message-style "fg=white bg=brightcyan" set -g escape-time 50 set -g display-panes-time 5000 |