22 lines
413 B
Lua
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,
|
|
}
|
|
}
|