Add back my gruvbox diff color hack

Since my PR was reverted.
This commit is contained in:
Tyler Hallada 2023-04-18 00:19:24 -04:00
parent 6d336c37bf
commit 05c133264b

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 }
)