tmux: Enable true color support

neomutt
Simon Bruder 2021-11-03 14:10:23 +01:00
parent 66f534157d
commit 2ef9d583f6
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
programs.tmux = {
enable = true;
terminal = "screen-256color";
terminal = "tmux-256color";
escapeTime = 0;
aggressiveResize = true;
baseIndex = 1;
@ -23,6 +23,9 @@
# disable mouse (prevents simple copying)
set -g mouse off
# true color support
set -ga terminal-overrides ",alacritty:Tc"
'';
};
}