home: zsh: explicitly set history save size
All checks were successful
continuous-integration/drone/push Build is passing

Turns out the `history.save` limit is for what is *loaded into memory*,
not what is written to disk.
This commit is contained in:
Bruno BELANYI 2021-06-23 23:14:01 +02:00
parent 5cebb9b54b
commit c6d21493ef

View file

@ -14,6 +14,7 @@ in
history = {
size = 500000;
save = 500000;
extended = false;
ignoreSpace = true;
ignoreDups = true;