All checks were successful
CI / Build opencode docker images (push) Successful in 26s
33 lines
523 B
JSON
33 lines
523 B
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"lsp": {
|
|
"java": {
|
|
"command": [
|
|
"jdtls"
|
|
],
|
|
"extensions": [
|
|
".java"
|
|
],
|
|
"env": {
|
|
"JAVA_TOOL_OPTIONS": "-javaagent:/usr/lib/opencode/addons/lombok.jar"
|
|
}
|
|
},
|
|
"python": {
|
|
"command": [
|
|
"pyright"
|
|
],
|
|
"extensions": [
|
|
".py",
|
|
"pyi"
|
|
]
|
|
},
|
|
"rust": {
|
|
"command": [
|
|
"rust-analyzer"
|
|
],
|
|
"extensions": [
|
|
".rs"
|
|
]
|
|
}
|
|
}
|
|
} |