diff options
-rw-r--r-- | lua/user/lsp/handlers.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/user/lsp/handlers.lua b/lua/user/lsp/handlers.lua index fb8b7f8..229bb75 100644 --- a/lua/user/lsp/handlers.lua +++ b/lua/user/lsp/handlers.lua @@ -3,10 +3,16 @@ local M = {} -- TODO: backfill this to template M.setup = function() local signs = { + --[[ { name = "DiagnosticSignError", text = "" }, { name = "DiagnosticSignWarn", text = "" }, { name = "DiagnosticSignHint", text = "" }, { name = "DiagnosticSignInfo", text = "" }, + ]] + { name = "DiagnosticSignError", text = "X" }, + { name = "DiagnosticSignWarn", text = "!" }, + { name = "DiagnosticSignHint", text = "i" }, + { name = "DiagnosticSignInfo", text = "?" }, } for _, sign in ipairs(signs) do |