nix-config/users/tacocat/programs/tmux.nix
2024-01-03 00:46:27 -05:00

16 lines
320 B
Nix

{pkgs, ...}: {
programs.tmux = {
enable = true;
escapeTime = 0;
clock24 = true;
mouse = true;
newSession = true;
shell = "${pkgs.fish}/bin/fish";
sensibleOnTop = true;
terminal = "tmux-256color";
# extraConfig = ''
# set -g default-terminal "screen-256color"
# '';
};
}