1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-fuzzy/default.nix
2025-06-22 19:00:23 +00:00

14 lines
183 B
Nix

{
empty = {
plugins.mini-fuzzy.enable = true;
};
example = {
plugins.mini-fuzzy = {
enable = true;
settings = {
cutoff = 50;
};
};
};
}