aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/gruvbox/groups.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua
index d12a88b..e9f57d2 100644
--- a/lua/gruvbox/groups.lua
+++ b/lua/gruvbox/groups.lua
@@ -148,10 +148,10 @@ M.setup = function()
PmenuSel = { fg = colors.bg2, bg = colors.blue, bold = config.bold },
PmenuSbar = { bg = colors.bg2 },
PmenuThumb = { bg = colors.bg4 },
- DiffDelete = { bg = colors.subtle_red },
- DiffAdd = { bg = colors.subtle_green },
- DiffChange = { bg = colors.subtle_brown },
- DiffText = { bg = colors.subtle_yellow },
+ DiffDelete = { fg = colors.red, bg = colors.bg0, reverse = config.inverse },
+ DiffAdd = { fg = colors.green, bg = colors.bg0, reverse = config.inverse },
+ DiffChange = { fg = colors.aqua, bg = colors.bg0, reverse = config.inverse },
+ DiffText = { fg = colors.yellow, bg = colors.bg0, reverse = config.inverse },
SpellCap = { link = "GruvboxBlueUnderline" },
SpellBad = { link = "GruvboxRedUnderline" },
SpellLocal = { link = "GruvboxAquaUnderline" },
@@ -386,7 +386,9 @@ M.setup = function()
diffChanged = { link = "GruvboxAqua" },
diffFile = { link = "GruvboxOrange" },
diffNewFile = { link = "GruvboxYellow" },
+ diffOldFile = { link = "GruvboxOrange" },
diffLine = { link = "GruvboxBlue" },
+ diffIndexLine = { link = "diffChanged" },
-- navic (highlight icons)
NavicIconsFile = { link = "GruvboxBlue" },
NavicIconsModule = { link = "GruvboxOrange" },