From 8aa4e2c44d4a2c637c22364942ad3820c38300b5 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Fri, 27 Jan 2023 15:38:58 -0500 Subject: [PATCH] Fixing italics in tmux --- home-cli.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home-cli.nix b/home-cli.nix index 18bbe0c..5ce3029 100644 --- a/home-cli.nix +++ b/home-cli.nix @@ -39,6 +39,7 @@ in clock24 = true; newSession = true; secureSocket = false; + terminal = "tmux-256color"; plugins = with pkgs.tmuxPlugins; [ sensible resurrect # prefix ctrl-s to save sessions; prefix ctrl-r to restore @@ -58,6 +59,7 @@ in set -g status-style fg=white set-window-option -g window-status-format '#[fg=cyan,bright,dim]#I #[fg=white,bright,dim]#W ' set-window-option -g window-status-current-format '#[fg=cyan,bright,nodim]#I #[fg=white,bright,nodim]#W ' + set -ag terminal-overrides ",xterm-256color:RGB" ''; };