From b09698439476df5d7da2800209ae95a60dcd14f1 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Wed, 30 Jul 2025 23:47:41 +0200 Subject: [PATCH] Update tmux indicator colors for better visibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change prefix indicator from purple to bright red (#fb4934) - Change copy mode position indicator from purple to bright yellow (#fabd2f) - Both colors match existing gruvbox theme palette - Improves visibility and consistency with nvim WIN indicator 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- modules/tmux.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/tmux.nix b/modules/tmux.nix index 48aedb6..55c8e6a 100644 --- a/modules/tmux.nix +++ b/modules/tmux.nix @@ -34,14 +34,14 @@ set -g message-command-style 'bg=#fabd2f,fg=#282828' # Copy mode colors - set -g mode-style 'bg=#d3869b,fg=#282828' + set -g mode-style 'bg=#fabd2f,fg=#282828' set -g copy-mode-match-style 'bg=#fabd2f,fg=#282828' set -g copy-mode-current-match-style 'bg=#fb4934,fg=#282828' # Status bar content set -g status-left-length 40 set -g status-right-length 30 - set -g status-left '#{?client_prefix,#[bg=#d3869b],#[bg=#a89984]}#[fg=#282828] #S #[default]' + set -g status-left '#{?client_prefix,#[bg=#fb4934],#[bg=#a89984]}#[fg=#282828] #S #[default]' set -g status-right '#{?pane_in_mode,[COPY],} %H:%M ' # Window status format