nvim-config/lua/plugins/illuminate.lua
2025-02-27 11:49:14 -05:00

22 lines
413 B
Lua

return {
{
"RRethy/vim-illuminate",
event = "VeryLazy",
opts = {
delay = 200,
large_file_cutoff = 2000,
large_file_overrides = {
providers = { "lsp" },
},
filetypes_denylist = {
"neo-tree",
'dirbuf',
'dirvish',
'fugitive',
},
},
config = function(_, opts)
require("illuminate").configure(opts)
end,
}
}