feat(nvim): customize Normal bg color for Neovide

This commit is contained in:
Price Hiller 2024-02-26 16:51:02 -06:00
parent cf0efbac34
commit a0d1d3de02
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -324,6 +324,10 @@ return {
{ "@markup.quote.org", get_hl("@markup.quote", { bg = colors.sumiInk5 }) },
}
if vim.g.neovide then
table.insert(extra_hls, 1, { "Normal", { fg = colors.fujiWhite, bg = "#1d2031" } })
end
vim.iter(extra_hls):enumerate():fold({}, function(t, index, tbl)
local hl_name = tbl[1]
local hl_opts = tbl[2]