diff options
author | Linnnus <[email protected]> | 2023-10-30 13:51:49 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-30 13:51:49 +0100 |
commit | 426b7728eb7b408ff763d34b130589cfd3538fd8 (patch) | |
tree | 6dbd82649445af7624aefc5d493b03064151ee7a /home/neovim/completion.nix | |
parent | 1d256f99ddd40b63b9be5c014c6855e2c2df8391 (diff) |
home/neovim: add clojure support
Diffstat (limited to 'home/neovim/completion.nix')
-rw-r--r-- | home/neovim/completion.nix | 7 |
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 ]; } |