diff --git a/lua/config/plugins/lsp_diagnostic.lua b/lua/config/plugins/lsp_diagnostic.lua new file mode 100644 index 0000000..641635e --- /dev/null +++ b/lua/config/plugins/lsp_diagnostic.lua @@ -0,0 +1,5 @@ +local signs = { Error = " ", Warn = " ", Hint = "󱩎 ", Info = " " } +for type, icon in pairs(signs) do + local hl = "DiagnosticSign" .. type + vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" }) +end