diff --git a/modules/home/programs/nushell/default.nix b/modules/home/programs/nushell/default.nix index e5b88d7..cd015c8 100644 --- a/modules/home/programs/nushell/default.nix +++ b/modules/home/programs/nushell/default.nix @@ -15,7 +15,7 @@ PASSWORD_STORE_DIR = "($env.HOME | path join .password-store)"; PATH = "($env.PATH | split row (char esep) | append ($env.HOME | path join .local bin))"; EDITOR = "nvim"; - TERM = "xterm-256color"; + TERM = "screen-256color"; }; shellAliases = { gcal = '' diff --git a/modules/home/programs/tmux/default.nix b/modules/home/programs/tmux/default.nix index 43559db..4b2c24e 100644 --- a/modules/home/programs/tmux/default.nix +++ b/modules/home/programs/tmux/default.nix @@ -8,5 +8,8 @@ shell = "\${SHELL}"; terminal = "screen-256color"; plugins = with pkgs.tmuxPlugins; [ tilish catppuccin ]; + extraConfig = '' + set-option -a terminal-features 'screen-256color:RGB' + ''; }; } diff --git a/modules/home/programs/zsh/default.nix b/modules/home/programs/zsh/default.nix index 4af1ffa..f22e633 100644 --- a/modules/home/programs/zsh/default.nix +++ b/modules/home/programs/zsh/default.nix @@ -10,10 +10,10 @@ sessionVariables = { PASSWORD_STORE_DIR = "$HOME/.password-store"; PAGER = "bat"; + TERM = "screen-256color"; }; shellAliases = { cal = "cal $(date +%Y)"; - ssh = "TERM=xterm-256color ssh"; GG = "git add . && git commit -m 'GG' && git push --set-upstream origin HEAD"; gad = "git add . && git diff --cached"; gac = "ga && gc";