Skip to content

Commit

Permalink
feat(neotest): add hl for neotest
Browse files Browse the repository at this point in the history
  • Loading branch information
thesimonho committed Jul 15, 2024
1 parent 06bc994 commit 3407e75
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions lua/kanagawa-paper/highlights/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,25 @@ function M.setup(colors, opts)
MiniTestPass = { fg = theme.diag.ok, bold = true },

MiniTrailspace = { bg = theme.vcs.removed },

-- neotest
NeotestAdapterName = { fg = theme.syn.special3 },
NeotestDir = { fg = theme.syn.fun },
NeotestExpandMarker = { fg = theme.syn.punct, bold = true },
NeotestFailed = { fg = theme.diag.error },
NeotestFile = { fg = theme.syn.fun },
NeotestFocused = { bold = true, underline = false },
NeotestIndent = { fg = theme.ui.indent, bold = true },
NeotestMarked = { fg = theme.diag.warning, italic = true },
NeotestNamespace = { fg = theme.syn.fun },
NeotestPassed = { fg = theme.diag.ok },
NeotestRunning = { fg = theme.vcs.changed },
NeotestWinSelect = { fg = theme.ui.picker },
NeotestSkipped = { fg = theme.syn.special1 },
NeotestTarget = { fg = theme.syn.special3 },
NeotestTest = { fg = theme.ui.float.fg },
NeotestUnknown = { fg = theme.syn.deprecated },
NeotestWatching = { fg = theme.vcs.changed },
}
end

Expand Down
2 changes: 1 addition & 1 deletion lua/kanagawa-paper/themes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ return function(palette)
comment = palette.fujiGray,
special1 = palette.dragonTeal,
special2 = palette.dragonRed,
special3 = palette.dragonRed,
special3 = palette.dragonBlue,
},
vcs = {
added = palette.autumnGreen,
Expand Down

0 comments on commit 3407e75

Please sign in to comment.