mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-10 03:21:30 +01:00
23 lines
333 B
Nix
23 lines
333 B
Nix
|
|
{
|
||
|
|
empty = {
|
||
|
|
plugins.telescope = {
|
||
|
|
enable = true;
|
||
|
|
extensions.ui-select.enable = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
example = {
|
||
|
|
plugins.telescope = {
|
||
|
|
enable = true;
|
||
|
|
|
||
|
|
extensions.ui-select = {
|
||
|
|
enable = true;
|
||
|
|
|
||
|
|
settings = {
|
||
|
|
specific_opts.codeactions = false;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|