feat(neovim): enhance fzf-native settings and add ripgrep module
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s

This commit is contained in:
uttarayan21
2025-10-17 02:01:56 +05:30
parent 28f9a0e108
commit e50b936197

View File

@@ -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 = {};
};
};
};
};