feat(zsh): autosuggestion & completion

This commit is contained in:
Barrett Ruth 2026-02-09 19:56:56 -05:00
parent a47e745b3d
commit 7370ee0a23

View file

@ -171,6 +171,13 @@ in
pe = "printenv";
};
syntaxHighlighting.enable = true;
autosuggestion = {
enable = true;
strategy = [ "history" "completion" ];
};
completionInit = ''
autoload -U compinit && compinit -d "$XDG_STATE_HOME/zcompdump" -u
zmodload zsh/complist