feat(illuminate): added illuminate
This commit is contained in:
1 file changed
+25
@@ -96,4 +96,29 @@ return {
|
|||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- references
|
||||||
|
{
|
||||||
|
"RRethy/vim-illuminate",
|
||||||
|
event = "BufReadPost",
|
||||||
|
config = function()
|
||||||
|
require("illuminate").configure({ delay = 200 })
|
||||||
|
end,
|
||||||
|
keys = {
|
||||||
|
{
|
||||||
|
"]]",
|
||||||
|
function()
|
||||||
|
require("illuminate").goto_next_reference(false)
|
||||||
|
end,
|
||||||
|
desc = "Next Reference",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"[[",
|
||||||
|
function()
|
||||||
|
require("illuminate").goto_prev_reference(false)
|
||||||
|
end,
|
||||||
|
desc = "Prev Reference",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
Reference in new issue
Block a user