Files
dotfiles/home/common/zsh.nix
2024-06-01 16:57:00 +05:30

25 lines
484 B
Nix

{ ... }:
{
programs.zsh = {
enable = true;
autocd = true;
history = rec {
expireDuplicatesFirst = true;
size = 30000;
save = size;
};
autosuggestion.enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
prezto = {
enable = true;
prompt.theme = "pure";
autosuggestions.color = "fg=yellow,bold";
utility.safeOps = false;
};
initExtra = ''
unsetopt extendedGlob
'';
};
}