home: add tmux

This commit is contained in:
Bruno BELANYI 2021-02-20 14:34:33 +00:00
parent 9ff63ae499
commit c23d3c6d5c
2 changed files with 11 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./jq.nix
./packages.nix
./pager.nix
./tmux.nix
./zsh
];
}

10
home/tmux.nix Normal file
View file

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