mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 10:18:36 +02:00
23 lines
372 B
Nix
23 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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|