pantheon/modules/tmux.nix
2025-02-28 04:26:02 +08:00

10 lines
187 B
Nix

{ ... }:
{
programs.tmux = {
enable = true;
extraConfig = ''
set -g default-terminal "tmux-256color"
set -ag terminal-overrides ",xterm-256color:RGB"
'';
};
}