From afacb3b04c5e98ca15fbbc49bb6bbd1fb9d6e478 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Wed, 12 Nov 2025 10:57:39 +0000 Subject: [PATCH] fix(tmux): fixed tmux colors --- nix/modules/tmux/home.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nix/modules/tmux/home.nix b/nix/modules/tmux/home.nix index 1ec3060..3f6433c 100644 --- a/nix/modules/tmux/home.nix +++ b/nix/modules/tmux/home.nix @@ -20,9 +20,10 @@ in minimal-tmux-status ]; extraConfig = '' - set-option -g default-terminal "screen-256color" - set -g status-bg black - set -g status-fg white + set-option -g default-terminal "xterm-256color" + set -a terminal-features "xterm-256color:RGB" + set -g status-bg black + set -g status-fg white ''; }; }