added Completion

dev-docs
Moritz Böhme 2021-09-11 13:53:32 +02:00
parent ab02c4bdfe
commit 925e2cf76f
1 changed files with 3 additions and 4 deletions

View File

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