From 3909ae2ee57b1c06816aa4487c4aec56cddc3a91 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 29 Dec 2024 12:00:04 +0100 Subject: [PATCH] nvim/lua/user/plugins/core/colorscheme.lua: undercurl for diagnostics --- nvim/lua/user/plugins/core/colorscheme.lua | 6 ++++++ 1 file changed, 6 insertions(+) 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 },