nixos-config/home-manager/modules/neovim/plugins/illuminate.nix
2024-08-18 23:58:42 -04:00

17 lines
278 B
Nix

{...}: {
programs.nixvim = {
plugins = {
illuminate = {
enable = true;
filetypesDenylist = [
"dirvish"
"fugitive"
"neo-tree"
"TelescopePrompt"
];
largeFileCutoff = 3000;
};
};
};
}