nix-config/users/tacocat/programs/tmux.nix
2024-02-02 11:08:59 -05:00

16 lines
295 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 focus-events on
'';
};
}