mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02: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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|