From fe0a52aa73384b9980fd7ecf70c9a6c3f982ceb3 Mon Sep 17 00:00:00 2001 From: louie Date: Wed, 29 Jun 2022 19:10:23 -0700 Subject: Removed nerdfonts --- lua/user/lsp/handlers.lua | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- cgit