From 2b0954001d0e04fe022570000c713a027ba1cc22 Mon Sep 17 00:00:00 2001 From: Jesse Hitch Date: Wed, 20 Aug 2025 16:18:16 +0200 Subject: [PATCH] fixing old nerdfonts for diagnostics --- .config/nvim/lua/user/lsp-configs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/user/lsp-configs.lua b/.config/nvim/lua/user/lsp-configs.lua index e2ba5e1..4c15f2a 100644 --- a/.config/nvim/lua/user/lsp-configs.lua +++ b/.config/nvim/lua/user/lsp-configs.lua @@ -157,7 +157,7 @@ lspconfig.yamlls.setup { } -- change the diagnostic signs to be nerdfonts -local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " } +local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " } for type, icon in pairs(signs) do local hl = "DiagnosticSign" .. type