nvim/lua/plugins/illuminate.lua
2024-05-02 00:40:40 -05:00

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,
}