12 lines
195 B
Lua
12 lines
195 B
Lua
---@type vim.lsp.Config
|
|
return {
|
|
init_options = {
|
|
completion = {
|
|
disableSnippets = true,
|
|
},
|
|
diagnostics = {
|
|
enable = true,
|
|
},
|
|
},
|
|
}
|