From 925e2cf76f4f91ac24fbd3d4669ee7d1905e16a1 Mon Sep 17 00:00:00 2001 From: MoritzBoehme Date: Sat, 11 Sep 2021 13:53:32 +0200 Subject: [PATCH] added Completion --- modules/zsh.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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"); }