zsh: Increase history size to 100000

This commit is contained in:
Simon Bruder 2021-04-14 21:55:49 +02:00
parent b9abd825cb
commit 942a5ffb04
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC

View file

@ -37,6 +37,10 @@ in
}; };
zsh = { zsh = {
enable = true; enable = true;
history = {
save = 100000;
size = 100000;
};
plugins = [ plugins = [
{ {
name = "zsh-nix-shell"; name = "zsh-nix-shell";