pojokcodeid.nvim-lazy/lua/pcode/plugins/extras/illuminate.lua

37 lines
518 B
Lua
Raw Normal View History

2024-11-04 21:29:25 +07:00
local M = {
"RRethy/vim-illuminate",
event = "VeryLazy",
}
function M.config()
require("illuminate").configure({
filetypes_denylist = {
"mason",
"harpoon",
"DressingInput",
"NeogitCommitMessage",
"qf",
"dirvish",
"oil",
"minifiles",
"fugitive",
"alpha",
"NvimTree",
"lazy",
"NeogitStatus",
"Trouble",
"netrw",
"lir",
"DiffviewFiles",
"Outline",
"Jaq",
"spectre_panel",
"toggleterm",
"DressingSelect",
"TelescopePrompt",
},
})
end
return M