···11+# neovim configuration
22+33+## LSP configuration
44+55+By default, all language servers installed with mason will be setup with `lspconfig`.
66+77+To change this on a per-project basis, create a [local config](./lua/plugins/config.lua) file.
88+99+```lua
1010+LangServers.lua_ls = false -- Disables the lang server
1111+1212+LangServers.vtsls = {} -- Will be passed to `require("lspconfig").vtsls.setup()`
1313+```
1414+1515+If not otherwise specified, `require("lspconfig")[server_name].setup({})` will be called.