mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-12-31 05:42:30 +00:00
update 2025-10-08 chore: update readme Update 2025-10-09 Update 2025-10-15 Update 2025-10-22 Update 2025-10-31
31 lines
442 B
Lua
31 lines
442 B
Lua
return {
|
|
"RRethy/vim-illuminate",
|
|
event = "BufReadPost",
|
|
keys = {
|
|
{
|
|
"<A-n>",
|
|
function()
|
|
require("illuminate").goto_next_reference()
|
|
end,
|
|
},
|
|
{
|
|
"<A-p>",
|
|
function()
|
|
require("illuminate").goto_prev_reference()
|
|
end,
|
|
},
|
|
},
|
|
opts = {
|
|
filetypes_denylist = {
|
|
"alpha",
|
|
"NvimTree",
|
|
"dirvish",
|
|
"fugitive",
|
|
"dbee",
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
require("illuminate").configure(opts)
|
|
end,
|
|
}
|