diff --git a/home-manager/neovim/lspconfig.lua b/home-manager/neovim/lspconfig.lua index 8db0ef1..700c1cf 100644 --- a/home-manager/neovim/lspconfig.lua +++ b/home-manager/neovim/lspconfig.lua @@ -172,7 +172,7 @@ vim.diagnostic.config({ }) -- setup diagnostics signs -local diagnostics_signs = { Error = "", Want = "", Hint = "", Info = "" } +local diagnostics_signs = { Error = "", Warn = "", Hint = "", Info = "" } for type, icon in pairs(diagnostics_signs) do local hl = "DiagnosticSign" .. type vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })