9 lines
217 B
Lua
9 lines
217 B
Lua
-- This plugin will smartly highlight the token under the cursor.
|
|
return {
|
|
"RRethy/vim-illuminate",
|
|
event = "VeryLazy",
|
|
opts = {},
|
|
config = function(_, opts)
|
|
require("illuminate").configure(opts)
|
|
end,
|
|
}
|