aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Linskey2026-06-07 16:04:24 -0400
committerBenjamin Linskey2026-06-07 16:06:53 -0400
commit9360b065b2525549c59da6a9b045b8e894cd7adb (patch)
tree2790ef45f829d27884bf4474c00d5a2db7b1a9d1
parenteace137b129e68d5d3801747086f6c7b59395b50 (diff)
downloaddotfiles-9360b065b2525549c59da6a9b045b8e894cd7adb.tar.gz

tmux: Update styling

Change colors to white on dark purple and make selected window label bold.

-rw-r--r--.tmux.conf8
1 files changed, 6 insertions, 2 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 8328eff..73d9d64 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -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