-
Notifications
You must be signed in to change notification settings - Fork 0
/
LSP.sublime-settings
48 lines (48 loc) · 1.03 KB
/
LSP.sublime-settings
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
{
"show_references_in_quick_panel": true,
"clients":
{
"elixir-ls":
{
"command":
[
"/Users/jacek/Projects/elixir/elixir-ls/release/language_server.sh"
],
"enabled": true,
"selector": "source.elixir"
},
"gopls":
{
"command": ["gopls"],
"enabled": true,
"selector": "source.go",
},
"rust-analyzer":
{
"command": ["rust-analyzer"],
"enabled": true,
"selector": "source.rust"
},
"typescript-language-server":
{
"command": ["typescript-language-server", "--stdio"],
"enabled": true,
"selector": "source.js, source.ts, source.jsx, source.tsx"
},
"css-languageserver":
{
"command": ["css-languageserver", "--stdio" ],
"enabled": true,
"selector": "source.less"
},
"ruby":
{
"enabled": true,
"command": ["solargraph", "stdio"],
"selector": "source.ruby | text.html.ruby",
"initializationOptions": {
"diagnostics": false,
},
},
},
}