fix(mason-lspconfig): add missing field `automatic_enable` in setup

This commit is contained in:
冰龍與雪風的工作室 2025-05-12 17:35:53 +09:00
parent 6ba2408cdf
commit 3763580050
1 changed files with 1 additions and 0 deletions

View File

@ -722,6 +722,7 @@ require('lazy').setup({
require('mason-lspconfig').setup { require('mason-lspconfig').setup {
ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer) ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer)
automatic_installation = false, automatic_installation = false,
automatic_enable = true, -- See https://github.com/mason-org/mason-lspconfig.nvim?tab=readme-ov-file#default-configuration
handlers = { handlers = {
function(server_name) function(server_name)
local server = servers[server_name] or {} local server = servers[server_name] or {}