mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
31 lines
610 B
Nix
31 lines
610 B
Nix
{
|
|
empty = {
|
|
plugins.illuminate.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.illuminate = {
|
|
enable = true;
|
|
|
|
delay = 50;
|
|
providers = ["lsp"];
|
|
modesDenylist = ["n"];
|
|
modesAllowlist = ["v"];
|
|
underCursor = false;
|
|
largeFileCutoff = 10;
|
|
minCountToHighlight = 2;
|
|
filetypesDenylist = ["csharp"];
|
|
filetypesAllowlist = ["python"];
|
|
filetypeOverrides = {
|
|
x = {
|
|
delay = 10;
|
|
providers = ["treesitter"];
|
|
};
|
|
};
|
|
largeFileOverrides = {
|
|
delay = 20;
|
|
underCursor = true;
|
|
};
|
|
};
|
|
};
|
|
}
|