16 lines
254 B
Lua
16 lines
254 B
Lua
-- Symbols to use for diagnostics
|
|
return {
|
|
-- LSP Status symbols
|
|
error = "",
|
|
warn = "",
|
|
info = "",
|
|
hint = "",
|
|
-- Comment type symbols
|
|
bug = "",
|
|
todo = "",
|
|
hack = "",
|
|
performance = "",
|
|
note = "",
|
|
test = "",
|
|
}
|