mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
34 lines
604 B
Nix
34 lines
604 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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
combine-plugins = {
|
|
plugins.telescope = {
|
|
enable = true;
|
|
extensions.fzf-native.enable = true;
|
|
};
|
|
|
|
performance.combinePlugins.enable = true;
|
|
};
|
|
}
|