mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 17:03:39 +02:00
26 lines
443 B
Lua
26 lines
443 B
Lua
-- Add any servers here together with their settings
|
|
---@type lspconfig.options
|
|
local servers = {
|
|
bashls = {},
|
|
clangd = {},
|
|
cssls = {},
|
|
tsserver = {},
|
|
html = {},
|
|
jsonls = {},
|
|
pyright = {},
|
|
yamlls = {},
|
|
sumneko_lua = {
|
|
settings = {
|
|
Lua = {
|
|
workspace = {
|
|
checkThirdParty = false,
|
|
},
|
|
completion = {
|
|
callSnippet = "Replace",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
return servers
|