nix-config/modules/nixos/nixvim/illuminate.nix
2025-05-30 21:10:10 +02:00

18 lines
256 B
Nix

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