You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
594 B
36 lines
594 B
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
|
|
|