Adds expandable LSP tool rows with scan icon and stable file path display Adds formatted/raw JSON output toggle and copy action Improves compact LSP input formatting
34 lines
908 B
JSON
34 lines
908 B
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"lsp": {
|
|
"tailwindcss": {
|
|
"command": ["tailwindcss-language-server", "--stdio"],
|
|
"extensions": [".ts", ".tsx", ".js", ".jsx", ".css", ".html"]
|
|
},
|
|
"css": {
|
|
"command": ["vscode-css-language-server", "--stdio"],
|
|
"extensions": [".css", ".scss", ".less"]
|
|
},
|
|
"html": {
|
|
"command": ["vscode-html-language-server", "--stdio"],
|
|
"extensions": [".html"]
|
|
},
|
|
"json": {
|
|
"command": ["vscode-json-language-server", "--stdio"],
|
|
"extensions": [".json", ".jsonc"]
|
|
},
|
|
"mdx": {
|
|
"command": ["mdx-language-server", "--stdio"],
|
|
"extensions": [".mdx"]
|
|
},
|
|
"marksman": {
|
|
"command": ["marksman", "server"],
|
|
"extensions": [".md"]
|
|
},
|
|
"dockerfile": {
|
|
"command": ["docker-langserver", "--stdio"],
|
|
"extensions": ["Dockerfile", ".dockerfile"]
|
|
}
|
|
}
|
|
}
|