nix-config/modules/DEFAULT/COMMON/nixvim/illuminate.nix
2024-12-26 16:51:37 +01:00

18 lines
256 B
Nix

{ ... }:
{
programs.nixvim.plugins = {
illuminate = {
enable = true;
underCursor = false;
filetypesDenylist = [
"Outline"
"TelescopePrompt"
"alpha"
"harpoon"
"reason"
];
};
};
}