new plugins, better color scheme

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-01-30 14:48:34 -06:00
parent 4645220def
commit 9a6b572940
4 changed files with 64 additions and 33 deletions

11
lua/plugins/eyeliner.lua Normal file
View file

@ -0,0 +1,11 @@
-- 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,
}