caenix/modules/home/caem/core/zsh.nix
2025-01-24 00:18:07 +01:00

15 lines
320 B
Nix

{ config, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history.size = 10000;
history.ignoreAllDups = true;
/* Not persisted on purpose */
history.path = "${config.xdg.cacheHome}/zsh_history";
};
}