-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.lsp.json
More file actions
63 lines (63 loc) · 1.19 KB
/
.lsp.json
File metadata and controls
63 lines (63 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"lspServers": {
"typescript": {
"command": "typescript-language-server",
"args": ["--stdio"],
"extensionToLanguage": {
".ts": "typescript",
".tsx": "typescriptreact",
".js": "javascript",
".jsx": "javascriptreact"
}
},
"python": {
"command": "pyright",
"args": [],
"extensionToLanguage": {
".py": "python"
}
},
"go": {
"command": "gopls",
"args": [],
"extensionToLanguage": {
".go": "go"
}
},
"rust": {
"command": "rust-analyzer",
"args": [],
"extensionToLanguage": {
".rs": "rust"
}
},
"java": {
"command": "jdtls",
"args": [],
"extensionToLanguage": {
".java": "java"
}
},
"csharp": {
"command": "omnisharp",
"args": [],
"extensionToLanguage": {
".cs": "csharp"
}
},
"ruby": {
"command": "ruby-lsp",
"args": [],
"extensionToLanguage": {
".rb": "ruby"
}
},
"php": {
"command": "phpactor",
"args": ["language-server"],
"extensionToLanguage": {
".php": "php"
}
}
}
}