17 lines
386 B
Nix
17 lines
386 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
home.file.".zshenv".enable = false;
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
dotDir = ".config/zsh";
|
|
|
|
history.size = 10000;
|
|
history.ignoreAllDups = true;
|
|
/* Not persisted on purpose */
|
|
history.path = "${config.xdg.cacheHome}/zsh_history";
|
|
};
|
|
}
|