this repo has no description
1# neovim configuration 2 3## LSP configuration 4 5By default, all language servers installed with mason will be setup with `lspconfig`. 6 7To change this on a per-project basis, create a [local config](./lua/plugins/config.lua) file. 8 9```lua 10LangServers.lua_ls = false -- Disables the lang server 11 12LangServers.vtsls = {} -- Will be passed to `require("lspconfig").vtsls.setup()` 13``` 14 15If not otherwise specified, `require("lspconfig")[server_name].setup({})` will be called.