mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
26 lines
432 B
Nix
26 lines
432 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
extensions.fzf-native.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.telescope = {
|
||
|
enable = true;
|
||
|
|
||
|
extensions.fzf-native = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
fuzzy = true;
|
||
|
override_generic_sorter = true;
|
||
|
override_file_sorter = true;
|
||
|
case_mode = "smart_case";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|