mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
24 lines
372 B
Nix
24 lines
372 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
extensions.fzy-native.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
|
||
|
extensions.fzy-native = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
override_file_sorter = true;
|
||
|
override_generic_sorter = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|