Skip to content

Commit 7a9b5de

Browse files
committed
feat(lsp): add new Ok diagnostic highlight
1 parent 7ec8f4d commit 7a9b5de

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/astrotheme/groups/lsp.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@ local function callback()
44
local hint = C.ui.cyan
55
local info = C.ui.blue
66
local warn = C.ui.yellow
7+
local okay = C.ui.green
78
return {
89
DiagnosticError = { fg = error },
910
DiagnosticHint = { fg = hint },
1011
DiagnosticInfo = { fg = info },
1112
DiagnosticWarn = { fg = warn },
13+
DiagnosticOk = { fg = okay },
1214
DiagnosticUnderlineError = { sp = error, undercurl = true },
1315
DiagnosticUnderlineHint = { sp = hint, undercurl = true },
1416
DiagnosticUnderlineInfo = { sp = info, undercurl = true },
1517
DiagnosticUnderlineWarn = { sp = warn, undercurl = true },
18+
DiagnosticUnderlineOk = { sp = okay, undercurl = true },
1619
LspCodeLens = { fg = C.ui.none_text },
1720
LspCodeLensSeparator = { fg = C.ui.none_text },
1821
LspReferenceRead = { fg = C.none, bg = C.ui.highlight },

0 commit comments

Comments
 (0)