From cd7e91f6881da45fb1ca543f30dc0acf2183b00b Mon Sep 17 00:00:00 2001 From: doryan Date: Thu, 17 Apr 2025 18:39:12 +0400 Subject: [PATCH] feat(signs): remove deprecated diagnostic signs configuration --- lua/config/plugins/lsp_diagnostic.lua | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 lua/config/plugins/lsp_diagnostic.lua diff --git a/lua/config/plugins/lsp_diagnostic.lua b/lua/config/plugins/lsp_diagnostic.lua deleted file mode 100644 index 641635e..0000000 --- a/lua/config/plugins/lsp_diagnostic.lua +++ /dev/null @@ -1,5 +0,0 @@ -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