this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

documentation

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