mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
15 lines
183 B
Nix
15 lines
183 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.mini-fuzzy.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.mini-fuzzy = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
cutoff = 50;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|