mason-lspconfig is kinda broken on first run

This commit is contained in:
Maciej Lebiest 2023-02-14 21:25:10 +01:00
parent 3344392f1e
commit c8917beb8e
3 changed files with 24 additions and 12 deletions

View file

@ -20,6 +20,14 @@ return {
"yamlls",
"lemminx",
"marksman"
}
},
-- Whether servers that are set up (via lspconfig) should be automatically installed if they're not already installed.
-- This setting has no relation with the `ensure_installed` setting.
-- Can either be:
-- - false: Servers are not automatically installed.
-- - true: All servers set up via lspconfig are automatically installed.
-- - { exclude: string[] }: All servers set up via lspconfig, except the ones provided in the list, are automatically installed.
-- Example: automatic_installation = { exclude = { "rust_analyzer", "solargraph" } }
automatic_installation = false,
}
}