From 0c8992b232fd373bf40a1278c9ab85b1c11d388b Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Thu, 28 Apr 2022 17:28:38 +0200 Subject: [PATCH] tmux: Get rid of Unicode symbols in status line Instead of putting the window id and name in filled rounded "boxes" with the help of Unicode characters, display simply the text on neutral background and change only the foreground. This makes the status line more minimal while also "supporting" terminals without a patched Nerd-font. --- .config/tmux/tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 89c9771..a3b1b6a 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -108,8 +108,8 @@ set -g status-left "#{prefix_highlight}" set -g status-justify centre -set -g window-status-current-format "#[fg=yellow]#[fg=black]#[bg=yellow]#I #W#[fg=yellow]#[bg=black] " -set -g window-status-format "#[fg=brightblack]#[fg=white]#[bg=brightblack]#I #W#[fg=brightblack]#[bg=black] " +set -g window-status-current-format "#[fg=brightyellow bold]#I #W" +set -g window-status-format "#[fg=brightblack]#I #W" # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run -b '~/.config/tmux/plugins/tpm/tpm'