Add back my gruvbox diff color hack

Since my PR was reverted.
This commit is contained in:
Tyler Hallada 2023-12-01 15:26:01 -05:00
parent 65575378dd
commit 6bd5e48655

16
after/plugin/gruvbox.lua Normal file
View File

@ -0,0 +1,16 @@
local colors = require("gruvbox.palette").colors;
function FixGruvbox()
vim.api.nvim_set_hl(0, 'DiffviewDiffAddAsDelete', { bg = "#431313" })
vim.api.nvim_set_hl(0, 'DiffDelete', { bg = "none", fg = colors.dark2 })
vim.api.nvim_set_hl(0, 'DiffviewDiffDelete', { bg = "none", fg = colors.dark2 })
vim.api.nvim_set_hl(0, 'DiffAdd', { bg = "#142a03" })
vim.api.nvim_set_hl(0, 'DiffChange', { bg = "#3B3307" })
vim.api.nvim_set_hl(0, 'DiffText', { bg = "#4D520D" })
end
FixGruvbox()
vim.api.nvim_create_autocmd(
"ColorScheme",
{ pattern = { "gruvbox" }, callback = FixGruvbox }
)