mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-12 21:51:13 +00:00
18 lines
265 B
Lua
18 lines
265 B
Lua
local status_ok, illuminate = pcall(require, "illuminate")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
illuminate.configure({
|
|
delay = 200,
|
|
filetypes_denylist = {
|
|
"neo-tree",
|
|
"packer",
|
|
"Trouble",
|
|
"TelescopePrompt",
|
|
"lspsagafinder",
|
|
"mason",
|
|
"starter",
|
|
},
|
|
})
|