diff options
| -rw-r--r-- | lua/plugins/lsp.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 4ce5610..5cca919 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -20,7 +20,8 @@ if not vim.g.lsp_setup_done then end end - local signs = { Error = " ", Warn = "▲", Info = "", Hint = "⚑" } + local signs = { Error = " ", Warn = "▲", Info = "", Hint = "⚑" } + -- for type, icon in pairs(signs) do local hl = "DiagnosticSign" .. type vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl }) |
