nix-config/home/tmux.nix

11 lines
198 B
Nix
Raw Normal View History

2021-02-20 15:34:33 +01:00
{ ... }:
{
programs.tmux = {
enable = true;
clock24 = true; # I'm one of those heathens
escapeTime = 0; # Let vim do its thing instead
historyLimit = 5000; # Bigger buffer
};
}