diff --git a/nvim/lua/user/plugins/core/colorscheme.lua b/nvim/lua/user/plugins/core/colorscheme.lua index bc38c73..d069bda 100644 --- a/nvim/lua/user/plugins/core/colorscheme.lua +++ b/nvim/lua/user/plugins/core/colorscheme.lua @@ -142,6 +142,12 @@ local options = { NeoTestWatching = { fg = colors.yellow }, NeoTestMarked = { fg = colors.orange }, + -- Diagnostics + DiagnosticUnderlineInfo = { style = {"undercurl"} }, + DiagnosticUnderlineHint = { style = {"undercurl"} }, + DiagnosticUnderlineWarn = { style = {"undercurl"} }, + DiagnosticUnderlineError = { style = {"undercurl"} }, + -- Markdown rendering RenderMarkdownCode = { bg = colors.crust }, RenderMarkdownCodeInline = { fg = colors.rosewater, bg = colors.crust },