From a8d998a545e126e40439f43a7fac45489f520c67 Mon Sep 17 00:00:00 2001 From: Martin Larsson Date: Fri, 21 Feb 2025 00:32:51 +0000 Subject: [PATCH] Remove nvim_diagnostic from lualine diagnostic sources as it was double counting the number of diagnostics with nvim_lsp --- nvim/lua/plugs/lualine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/plugs/lualine.lua b/nvim/lua/plugs/lualine.lua index 502b6e1..d7c19bd 100644 --- a/nvim/lua/plugs/lualine.lua +++ b/nvim/lua/plugs/lualine.lua @@ -35,7 +35,7 @@ return { "branch", { "diagnostics", - sources = { "nvim_lsp", "nvim_diagnostic", }, + sources = { "nvim_lsp" }, sections = { "error", "warn", "info", "hint" }, update_in_insert = false, },