@@ -10,21 +10,25 @@ function M.get(spec, config, opts)
10
10
DiagnosticWarn = { fg = d .warn },
11
11
DiagnosticInfo = { fg = d .info },
12
12
DiagnosticHint = { fg = d .hint },
13
+ DiagnosticOk = { fg = d .ok },
13
14
14
15
DiagnosticSignError = { link = " DiagnosticError" },
15
16
DiagnosticSignWarn = { link = " DiagnosticWarn" },
16
17
DiagnosticSignInfo = { link = " DiagnosticInfo" },
17
18
DiagnosticSignHint = { link = " DiagnosticHint" },
19
+ DiagnosticSignOk = { link = " DiagnosticOk" },
18
20
19
21
DiagnosticVirtualTextError = { fg = d .error , bg = opts .background and dbg .error or " NONE" },
20
22
DiagnosticVirtualTextWarn = { fg = d .warn , bg = opts .background and dbg .warn or " NONE" },
21
23
DiagnosticVirtualTextInfo = { fg = d .info , bg = opts .background and dbg .info or " NONE" },
22
24
DiagnosticVirtualTextHint = { fg = d .hint , bg = opts .background and dbg .hint or " NONE" },
25
+ DiagnosticVirtualTextOk = { fg = d .ok , bg = opts .background and dbg .ok or " NONE" },
23
26
24
27
DiagnosticUnderlineError = { style = " undercurl" , sp = d .error },
25
28
DiagnosticUnderlineWarn = { style = " undercurl" , sp = d .warn },
26
29
DiagnosticUnderlineInfo = { style = " undercurl" , sp = d .info },
27
30
DiagnosticUnderlineHint = { style = " undercurl" , sp = d .hint },
31
+ DiagnosticUnderlineOk = { style = " undercurl" , sp = d .ok },
28
32
}
29
33
end
30
34
0 commit comments