mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 08:35:57 +00:00
feat: add hashline editing and TypeScript LSP
This commit is contained in:
@@ -1,6 +1,35 @@
|
||||
{
|
||||
"version": 1,
|
||||
"servers": [
|
||||
{
|
||||
"id": "typescript-language-server",
|
||||
"enabled": true,
|
||||
"include": ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts", "**/*.js", "**/*.jsx", "**/*.mjs", "**/*.cjs"],
|
||||
"exclude": ["**/node_modules/**", "**/dist/**", "**/build/**", "**/coverage/**"],
|
||||
"rootMarkers": [
|
||||
"tsconfig.json",
|
||||
"jsconfig.json",
|
||||
"package.json",
|
||||
".git"
|
||||
],
|
||||
"bin": "typescript-language-server",
|
||||
"args": ["--stdio"],
|
||||
"cwd": "{root}",
|
||||
"languageIdByExtension": {
|
||||
".ts": "typescript",
|
||||
".tsx": "typescriptreact",
|
||||
".mts": "typescript",
|
||||
".cts": "typescript",
|
||||
".js": "javascript",
|
||||
".jsx": "javascriptreact",
|
||||
".mjs": "javascript",
|
||||
".cjs": "javascript"
|
||||
},
|
||||
"startupTimeoutMs": 45000,
|
||||
"diagnosticsWaitMs": 2000,
|
||||
"initializationOptions": {},
|
||||
"settings": {}
|
||||
},
|
||||
{
|
||||
"id": "kotlin-lsp",
|
||||
"enabled": true,
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"hashLength": 2,
|
||||
"grep": false,
|
||||
"replaceText": false
|
||||
}
|
||||
Reference in New Issue
Block a user