nix/modules/programs/tmux/default.nix
2024-10-20 11:11:07 +02:00

14 lines
302 B
Nix

{
programs.tmux = {
enable = true;
extraConfig = ''
set-option -g status off
# Ensure tmux uses 256 colors
set -g default-terminal "tmux-256color"
# Enable true colors (24-bit color) in tmux
set-option -ga terminal-overrides ",xterm-256color:Tc"
'';
};
}