nix-config/home/tmux.nix
2021-03-03 17:02:48 +00:00

11 lines
198 B
Nix

{ ... }:
{
programs.tmux = {
enable = true;
clock24 = true; # I'm one of those heathens
escapeTime = 0; # Let vim do its thing instead
historyLimit = 5000; # Bigger buffer
};
}