1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim: colorscheme: add custom colors for neotest groups.

This commit is contained in:
Henrik Hautakoski 2024-09-08 13:38:28 +02:00
parent 6f6cb51e16
commit 058b658b85

View file

@ -83,6 +83,22 @@ local options = {
NeoTreeModified = { fg = colors.yellow },
NeoTreeWinSeparator = { link = "WinSeparator" },
-- Neotest
NeoTestWinSelect = { fg = colors.mauve },
NeoTestIndent = { fg = colors.surface1 },
NeoTestExpandMarker = { link = "NeoTestIndent" },
NeoTestAdapterName = { fg = colors.mauve },
NeoTestFile = { fg = colors.lavender },
NeoTestDir = { fg = colors.blue },
NeoTestTarget = { fg = colors.blue },
NeoTestNamespace = { fg = colors.mauve },
NeoTestPassed = { fg = colors.green },
NeoTestFailed = { fg = colors.red },
NeoTestSkipped = { fg = colors.blue },
NeoTestRunning = { fg = colors.yellow },
NeoTestWatching = { fg = colors.yellow },
NeoTestMarked = { fg = colors.orange },
-- Markdown rendering
RenderMarkdownCode = { bg = colors.crust },
RenderMarkdownCodeInline = { fg = colors.rosewater, bg = colors.crust },