Skip to content

Commit 8fb00f5

Browse files
authored
Add highlight groups for TS diff (#101)
I searched around and found the groups in other themes. Fixes #100. References: - EdenEast/nightfox.nvim@a201f5f - bluz71/vim-moonfly-colors@b194851
1 parent 0f7e9eb commit 8fb00f5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

lua/zenbones/specs/dark.lua

+3
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@ local function generate(p, opt)
275275
diffLine { fg = p.blossom, gui = "bold" },
276276
diffIndexLine { fg = p.wood },
277277

278+
sym "@text.diff.add" { diffAdded },
279+
sym "@text.diff.delete" { diffRemoved },
280+
278281
gitcommitOverflow { WarningMsg },
279282

280283
markdownUrl { SpecialComment },

lua/zenbones/specs/light.lua

+3
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,9 @@ local function generate(p, opt)
275275
diffLine { fg = p.blossom, gui = "bold" },
276276
diffIndexLine { fg = p.wood },
277277

278+
sym "@text.diff.add" { diffAdded },
279+
sym "@text.diff.delete" { diffRemoved },
280+
278281
gitcommitOverflow { WarningMsg },
279282

280283
markdownUrl { SpecialComment },

0 commit comments

Comments
 (0)