From 7370ee0a23c51d7b282ff0c2cebe76651370048e Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 9 Feb 2026 19:56:56 -0500 Subject: [PATCH] feat(zsh): autosuggestion & completion --- home/modules/shell.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/modules/shell.nix b/home/modules/shell.nix index eb4a67b..0eac7bb 100644 --- a/home/modules/shell.nix +++ b/home/modules/shell.nix @@ -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