From 9af50fc20bcf474dc126be6c20bab0ceaba6bcc4 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Fri, 14 Jun 2024 00:05:19 +0200 Subject: [PATCH] Disable numhl for diagnostics --- nvim/dot-config/nvim/lua/plugins/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/dot-config/nvim/lua/plugins/lsp.lua b/nvim/dot-config/nvim/lua/plugins/lsp.lua index c458dcc..4cb7752 100644 --- a/nvim/dot-config/nvim/lua/plugins/lsp.lua +++ b/nvim/dot-config/nvim/lua/plugins/lsp.lua @@ -49,7 +49,7 @@ return { for type, icon in pairs(signs) do local hl_sign = "DiagnosticSign" .. type local hl_text = "Diagnostic" .. type - vim.fn.sign_define(hl_sign, { text = icon, texthl = hl_sign, numhl = hl_text }) + vim.fn.sign_define(hl_sign, { text = icon, texthl = hl_sign }) end vim.api.nvim_create_autocmd("LspAttach", {