undercurl + no virtual text

This commit is contained in:
ant 2024-09-27 11:22:30 +02:00
parent 733160e440
commit 7c0269c0d3
2 changed files with 7 additions and 3 deletions

View file

@ -51,9 +51,9 @@ end
vim.diagnostic.config({
-- virtual_text = false,
virtual_text = false,
-- signs = true,
-- underline = true,
underline = true,
-- update_in_insert = false,
-- severity_sort = false,
})

View file

@ -72,7 +72,11 @@ local plugins = {
HopNextKey = { bg = C.text, fg = C.base, style = { "bold", "underline" } },
HopNextKey1 = { bg = C.text, fg = C.base, style = { "bold" } },
HopNextKey2 = { bg = C.text, fg = C.base, style = { "bold", "italic" } },
DiagnosticUnderlineError = { style = { "undercurl" }},
DiagnosticUnderlineWarn = { style = { "undercurl" }},
DiagnosticUnderlineInfo = { style = { "undercurl" }},
DiagnosticUnderlineHint = { style = { "undercurl" }},
DiagnosticUnderlineOk = { style = { "undercurl" }},
-- Function = { fg = C.blue, style = { "bold" } },
-- Keyword = { fg = C.black, style = { "italic" } },
}