nvim/lua/plugins/eyeliner.lua
2024-01-30 14:48:34 -06:00

11 lines
247 B
Lua

-- This plugin will highlight all first letters after pressing f in the line.
return {
"jinh0/eyeliner.nvim",
opts = {
highlight_on_key = true,
dim = true,
},
config = function(_, opts)
require("eyeliner").setup(opts)
end,
}