39 lines
837 B
JSON
39 lines
837 B
JSON
{
|
|
"$schema": "https://gitea.itspm.cc/pmcc/pi-lsp/raw/branch/main/lsp.schema.json",
|
|
"maxResults": 200,
|
|
"startupTimeoutMs": 30000,
|
|
"requestTimeoutMs": 15000,
|
|
"diagnosticsTimeoutMs": 5000,
|
|
"servers": {
|
|
"clangd": {
|
|
"enabled": true,
|
|
"command": "clangd",
|
|
"args": [
|
|
"--background-index",
|
|
"--clang-tidy",
|
|
"--completion-style=detailed"
|
|
]
|
|
},
|
|
"gopls": {
|
|
"enabled": true,
|
|
"command": "gopls",
|
|
"args": []
|
|
},
|
|
"ols": {
|
|
"enabled": true,
|
|
"command": "ols",
|
|
"args": []
|
|
},
|
|
"roslyn": {
|
|
"enabled": true,
|
|
"command": "roslyn-language-server",
|
|
"args": ["--stdio", "--autoLoadProjects"]
|
|
},
|
|
"typescript": {
|
|
"enabled": true,
|
|
"command": "typescript-language-server",
|
|
"args": ["--stdio"]
|
|
}
|
|
}
|
|
}
|