summaryrefslogtreecommitdiff
path: root/home/neovim/completion.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/neovim/completion.nix')
-rw-r--r--home/neovim/completion.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/home/neovim/completion.nix b/home/neovim/completion.nix
index 70d6e1a..904491d 100644
--- a/home/neovim/completion.nix
+++ b/home/neovim/completion.nix
@@ -1,9 +1,5 @@
# This module sets up auto completion for Neovim.
-{
- pkgs,
- lib,
- ...
-}: {
+{pkgs, ...}: {
programs.neovim.plugins = with pkgs.vimPlugins; [
# This is the actual completion engine.
{
@@ -47,5 +43,6 @@
cmp-calc
cmp-buffer
cmp-path
+ cmp-conjure
];
}