From e50b936197f905cf9a7fff98bf3f1331d6a2ddad Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Fri, 17 Oct 2025 02:01:56 +0530 Subject: [PATCH] feat(neovim): enhance fzf-native settings and add ripgrep module --- neovim/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/neovim/default.nix b/neovim/default.nix index 94ef5908..e3207c78 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -358,7 +358,14 @@ in { extensions = { undo.enable = true; ui-select.enable = true; - fzf-native.enable = true; + fzf-native = { + enable = true; + settings = { + fuzzy = true; + override_generic_sorter = true; + override_file_sorter = true; + }; + }; file-browser.enable = true; }; }; @@ -596,6 +603,11 @@ in { # -- options for the blink-cmp-git }; }; + ripgrep = { + module = "blink-ripgrep"; + name = "Ripgrep"; + opts = {}; + }; }; }; };