nvim/lua/plugins/illuminate.lua
RingOfStorms (Joshua Bell) af4a920551 small updates around the place
2024-02-20 21:00:17 -06:00

9 lines
217 B
Lua

-- This plugin will smartly highlight the token under the cursor.
return {
"RRethy/vim-illuminate",
event = "BufEnter",
opts = {},
config = function(_, opts)
require("illuminate").configure(opts)
end,
}