added support for resolve.nvim

This commit is contained in:
2026-03-17 05:15:23 +01:00
parent 06df433026
commit 181bc2d41e
2 changed files with 11 additions and 1 deletions

View File

@@ -314,6 +314,15 @@ theme.set_highlights = function(opts)
hl(0, "YankHighlight", { bg = c.yank_fg })
hl(0, "TextYankPost", { bg = c.yank_fg })
-- resolve.nvim
hl(0, "ResolveOursMarker", { bg = c.added_fg, bold = true })
hl(0, "ResolveTheirsMarker", { bg = c.modified_fg, bold = true })
hl(0, "ResolveSeparatorMarker", { bg = c.border, bold = true })
hl(0, "ResolveAncestorMarker", { bg = c.removed_fg, bold = true })
hl(0, "ResolveOursSection", { bg = c.added_bg })
hl(0, "ResolveTheirsSection", { bg = c.modified_bg })
hl(0, "ResolveAncestorSection", { bg = c.removed_bg })
end
return theme