From 37635800504d86f2619c953dbf3b8033cb08c7b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=B0=E9=BE=8D=E8=88=87=E9=9B=AA=E9=A2=A8=E7=9A=84?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E5=AE=A4?= <57035251+SetsuikiHyoryu@users.noreply.github.com> Date: Mon, 12 May 2025 17:35:53 +0900 Subject: [PATCH] fix(mason-lspconfig): add missing field `automatic_enable` in setup --- init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/init.lua b/init.lua index b98ffc61..5fb7de67 100644 --- a/init.lua +++ b/init.lua @@ -722,6 +722,7 @@ require('lazy').setup({ require('mason-lspconfig').setup { ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer) automatic_installation = false, + automatic_enable = true, -- See https://github.com/mason-org/mason-lspconfig.nvim?tab=readme-ov-file#default-configuration handlers = { function(server_name) local server = servers[server_name] or {}