Skip to content

Commit 9e84f9e

Browse files
authored
feat: add highlight groups for git-conflict.nvim (#54)
1 parent b5389a9 commit 9e84f9e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

lua/one_monokai/themes/groups.lua

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ function groups.get(colors, transparent)
184184
TSRainbowCyan = { fg = colors.cyan },
185185

186186
-- diff
187-
DiffAdd = { fg = colors.dark_green, bg = colors.green },
188-
DiffChange = { fg = colors.dark_green, bg = colors.white },
189-
DiffDelete = { fg = colors.dark_green, bg = colors.red },
187+
DiffAdd = { fg = colors.green },
188+
DiffChange = { fg = colors.white },
189+
DiffDelete = { fg = colors.red },
190190
DiffText = { fg = colors.dark_green, bg = colors.cyan },
191191
diffAdded = { fg = colors.green },
192192
diffChanged = { fg = colors.white },
@@ -354,6 +354,12 @@ function groups.get(colors, transparent)
354354
CmpItemKindValue = { fg = colors.white },
355355
CmpItemKindVariable = { fg = colors.cyan },
356356

357+
-- git-conflict
358+
GitConflictCurrent = { fg = colors.dark_green, bg = colors.cyan },
359+
GitConflictIncoming = { fg = colors.dark_green, bg = colors.green },
360+
GitConflictCurrentLabel = { fg = colors.dark_green },
361+
GitConflictIncomingLabel = { fg = colors.dark_green },
362+
357363
-- lazy
358364
LazyButton = { fg = colors.white, bg = colors.vulcan },
359365
LazyButtonActive = { fg = colors.black, bg = colors.white },

0 commit comments

Comments
 (0)