add history config to zshrc

This commit is contained in:
Fabian Montero 2024-12-02 12:22:23 -06:00
parent 93946beae2
commit a38110ee55
Signed by: fabian
GPG key ID: 1FFAC35E1798174F

View file

@ -20,6 +20,14 @@ in {
enable = true;
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
history = {
append = true;
expireDuplicatesFirst = true;
ignoreAllDups = true;
ignoreSpace = true;
};
initExtra = import ./zshrc.nix {inherit config lib pkgs;};
};
};