Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
theJian committed Dec 17, 2023
1 parent 7d5a77e commit d80388a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/moonwalk/schemes/diagnostic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ function diagnostic(opts, c)
return {
DiagnosticError = { fg = c.red_bold },
DiagnosticWarn = { fg = c.gold_bold },
DiagnosticInfo = { fg = c.fg_soft },
DiagnosticHint = { fg = c.primary },
DiagnosticInfo = { fg = c.primary_bold },
DiagnosticHint = { fg = c.fg_soft },
DiagnosticOk = { fg = c.green_bold },
DiagnosticUnderlineError = { sp = c.red_bolder, underline = true },
DiagnosticUnderlineWarn = { sp = c.gold_bolder, underline = true },
Expand Down
2 changes: 2 additions & 0 deletions lua/moonwalk/schemes/gitsigns.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
function gitsigns(opts, c)
return {
GitSignsAdd = { fg = c.green_soft },
GitSignsAddNr = { fg = c.green_softer, bg = c.none },
GitSignsAddLn = { bg = c.green_bg },
GitSignsChange = { fg = c.gold_bolder },
GitSignsChangeNr = { fg = c.green_softer, bg = c.none },
GitSignsChangeLn = { bg = c.green_bg },
GitSignsDeleteNr = { fg = c.red_soft, bg = c.none },
Expand Down
3 changes: 3 additions & 0 deletions test/highlights_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ local NON_TEXT = {
'VertSplit',
'Folded',
'IblScope',
'GitSignsChange',
'GitSignsChangeNr',
'GitSignsAdd',
'GitSignsAddNr',
}

Expand Down Expand Up @@ -166,6 +168,7 @@ do
'@comment.documentation',
'@lsp.type.comment',
'@conceal',
'@conceal.json',
'@punctuation.special',
'@string.documentation',
'@error',
Expand Down

0 comments on commit d80388a

Please sign in to comment.