From 154c606ecbc9069df8289e81b46025a6f9820867 Mon Sep 17 00:00:00 2001 From: DuN0z Date: Wed, 22 Oct 2025 08:16:42 +0200 Subject: [PATCH] Fix: shut-up Lsp ! --- lua/plugins/lsp.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 8cf2ad7..e823454 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -1,3 +1,7 @@ +if vim.fn.has("nvim-0.11") == 1 then + -- Patch temporaire pour désactiver les warnings de dépréciation + vim.deprecate = function() end +end return { { "williamboman/mason.nvim",