From 28f9a0e1085f13ddd1baadd7162af01c988bb428 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Fri, 17 Oct 2025 01:52:01 +0530 Subject: [PATCH] feat(neovim): enable blink-cmp-git and reorder enable statements --- neovim/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/neovim/default.nix b/neovim/default.nix index 62cb9cc3..94ef5908 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -589,13 +589,20 @@ in { opts = { }; }; + git = { + module = "blink-cmp-git"; + name = "Git"; + opts = { + # -- options for the blink-cmp-git + }; + }; }; }; }; }; blink-ripgrep.enable = true; - blink-cmp-dictionary.enable = true; blink-cmp-git.enable = true; + blink-cmp-dictionary.enable = true; blink-cmp-copilot.enable = true; blink-cmp-spell.enable = true; blink-compat = {