feat: add correct cursor color

This commit is contained in:
Daniel Hill 2023-04-10 13:20:54 -04:00
parent 1f14c5a0d1
commit 8605e52279
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ local M = {}
---@class HighlightsProvider
---@field highlights table<string, Highlight>
---@field setup fun()
---@type HighlightsProvider[]
local providers = {
@ -17,6 +18,7 @@ function M.setup()
for _, provider in ipairs(providers) do
provider:setup()
end
vim.opt.guicursor:append("a:Cursor/lCursor")
end
return M