20 lines
268 B
Lua
20 lines
268 B
Lua
|
local function config()
|
||
|
local illuminate = require('illuminate')
|
||
|
|
||
|
illuminate.configure({
|
||
|
providers = {
|
||
|
'lsp',
|
||
|
'treesitter',
|
||
|
'regex',
|
||
|
},
|
||
|
delay = 200,
|
||
|
filetypes_denylist = {
|
||
|
'alpha',
|
||
|
'NvimTree',
|
||
|
'TelescopePrompt',
|
||
|
},
|
||
|
})
|
||
|
end
|
||
|
|
||
|
return config
|