mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-26 02:38:50 +02:00
feat: initial commit
This commit is contained in:
commit
58e5dae036
18 changed files with 683 additions and 0 deletions
25
lua/user/plugins/lsp/servers.lua
Normal file
25
lua/user/plugins/lsp/servers.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
---@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
|
Loading…
Add table
Add a link
Reference in a new issue