refactor(nvim): update neogit diff hls

This commit is contained in:
Price Hiller 2024-02-15 15:14:39 -06:00
parent 840c753d65
commit 8a4316f3cf
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 3 additions and 3 deletions

View File

@ -1009,7 +1009,7 @@ return {
local count = self.status_dict.added or 0
return count > 0 and ("" .. count)
end,
hl = { fg = utils.get_highlight("DiffAdd").fg, bg = colors.sumiInk4 },
hl = { fg = utils.get_highlight("Character").fg, bg = colors.sumiInk4 },
},
{
provider = function(self)

View File

@ -58,11 +58,11 @@ return {
NeogitDiffContext = { bg = colors.sumiInk3 },
NeogitDiffContextHighlight = { bg = colors.sumiInk4 },
NeogitCursorLine = { link = "CursorLine" },
NeogitDiffDelete = { link = "DiffDelete" },
NeogitDiffAdd = { fg = colors.autumnGreen, bg = colors.winterGreen },
NeogitDiffDelete = { fg = colors.autumnRed, bg = colors.winterRed },
NeogitDiffDeleteHighlight = { link = "DiffDelete" },
NeogitDiffHeader = { fg = colors.oniViolet, bg = colors.sumiInk0, bold = true },
NeogitDiffHeaderHighlight = { fg = colors.sakuraPink, bg = colors.sumiInk0, bold = true },
NeogitDiffAdd = { link = "DiffAdd" },
NeogitDiffAddHighlight = { link = "DiffAdd" },
NeogitStagedChanges = { fg = colors.surimiOrange, bold = true },
NeogitUnpulledChanges = { fg = colors.peachRed, bold = true },