1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-18 22:52:39 +00:00
dotfiles/.config/nvim/lua/plugins/illuminate.lua

15 lines
222 B
Lua
Raw Normal View History

2022-10-08 10:44:11 +00:00
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",
},
})