diff --git a/modules/zsh.nix b/modules/zsh.nix index 61d8581..e0b7311 100644 --- a/modules/zsh.nix +++ b/modules/zsh.nix @@ -14,15 +14,13 @@ let cat = "bat"; }; plugins = [ - { - name = "zsh-autosuggestions"; - src = inputs.zsh-autosuggestions; - } { name = "zsh-syntax-highlighting"; src = inputs.zsh-syntax-highlighting; } ]; + enableAutosuggestions = true; + enableCompletion = true; }; exa.enable = true; bat.enable = true; @@ -35,5 +33,6 @@ let }); in { + environment.pathsToLink = [ "/share/zsh" ]; home-manager.users.moritz = {...}: (base "/home/moritz"); }