better zsh-completions install
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good

This commit is contained in:
2025-03-13 12:50:59 -05:00
parent 32f6efd284
commit a553533c36
2 changed files with 9 additions and 3 deletions

View File

@@ -19,6 +19,11 @@
src = parrot-nvim;
name = "parrot-nvim";
};
zshCompletionPlugin = {
name = "zsh-completions";
src = inputs.zsh-completions;
};
in
{
customVimPlugins = {
@@ -28,9 +33,9 @@
parrot-nvim = parrotNvimPlugin;
};
customZshPlugins = with inputs; [
zsh-completions
];
customZshPlugins = {
zsh-completions = zshCompletionPlugin;
};
};
}