home: vim: explicitly revert diff highlighting

This commit is contained in:
Bruno BELANYI 2024-03-14 10:56:08 +00:00
parent c0ef5c9275
commit 10b4e6ce2d
1 changed files with 6 additions and 0 deletions

View File

@ -91,11 +91,17 @@ set termguicolors
" Setup some overrides for gruvbox
lua << EOF
local gruvbox = require("gruvbox")
local colors = gruvbox.palette
gruvbox.setup({
overrides = {
-- Only URLs should be underlined
["@string.special.path"] = { link = "GruvboxOrange" },
-- Revert back to the better diff highlighting
DiffAdd = { fg = colors.green, bg = "NONE" },
DiffChange = { fg = colors.aqua, bg = "NONE" },
DiffDelete = { fg = colors.red, bg = "NONE" },
DiffText = { fg = colors.yellow, bg = colors.bg0 },
}
})
EOF