From db501d32cf2c186182ecd87f749724cdbd1c3a4c Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Mon, 22 Apr 2024 19:35:23 +0300 Subject: [PATCH] change default term for tmux --- modules/home/programs/tmux/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/programs/tmux/default.nix b/modules/home/programs/tmux/default.nix index a29fa4a..e0357eb 100644 --- a/modules/home/programs/tmux/default.nix +++ b/modules/home/programs/tmux/default.nix @@ -5,7 +5,7 @@ plugins = with pkgs.tmuxPlugins; [ tilish catppuccin ]; extraConfig = '' set -g default-command "''${SHELL}" - set -g default-terminal "tmux-256color" + set -g default-terminal "xterm-256color" set -g base-index 1 set -s escape-time 0 '';