Files
dotfiles/dot_pi/agent/lsp.json
T
2026-08-23 19:46:43 -04:00

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"]
}
}
}