dotfiles/nix/home/programs/tmux/default.nix
2024-12-12 11:53:22 -08:00

19 lines
329 B
Nix

{ ... }:
{
programs.tmux = {
enable = true;
tmuxinator = {
enable = true;
};
terminal = "screen-256color";
aggressiveResize = true;
secureSocket = false;
baseIndex = 1;
historyLimit = 10000;
escapeTime = 500;
mouse = true;
extraConfig = builtins.readFile ./tmux.conf;
};
}