refactor(nvim): darken Normal bg when using Neovide

This commit is contained in:
Price Hiller 2024-03-09 22:48:14 -06:00
parent 25f1642587
commit 25c37ce7f4
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -354,7 +354,7 @@ return {
}
if vim.g.neovide then
table.insert(extra_hls, 1, { "Normal", { fg = colors.fujiWhite, bg = "#1d2031" } })
table.insert(extra_hls, 1, { "Normal", { fg = colors.fujiWhite, bg = "#1a1c2b" } })
end
vim.iter(extra_hls):enumerate():fold({}, function(t, index, tbl)