mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
36 lines
518 B
Lua
36 lines
518 B
Lua
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
|