From c2c0373b3e1c4dbfaa0a61e41b18b4fec7f149af Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Tue, 12 May 2026 15:31:19 +0200 Subject: [PATCH] fix flutter with nvim 0.12.2 --- lua/plugins/lsp.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 213dcf9..603a3ee 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -45,7 +45,9 @@ return { }) end -- Activate the server - vim.lsp.enable(server_name) + if server_name ~= "dartls" then + vim.lsp.enable(server_name) + end end -- Diagnostic display config -- 2.49.1