-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathextension.toml
More file actions
93 lines (74 loc) · 2 KB
/
extension.toml
File metadata and controls
93 lines (74 loc) · 2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
id = "ruby"
name = "Ruby"
description = "Ruby support."
version = "0.16.11"
schema_version = 1
authors = ["Vitaly Slobodin <vitaliy.slobodin@gmail.com>"]
repository = "https://github.com/zed-extensions/ruby"
snippets = "./languages/ruby/ruby.json"
[language_servers.solargraph]
name = "Solargraph"
languages = ["Ruby"]
[language_servers.ruby-lsp]
name = "Ruby LSP"
languages = ["Ruby", "ERB", "HTML+ERB", "YAML+ERB", "JS+ERB"]
[language_servers.ruby-lsp.language_ids]
"Ruby" = "ruby"
"ERB" = "erb"
"HTML+ERB" = "erb"
"YAML+ERB" = "erb"
"JS+ERB" = "erb"
[language_servers.rubocop]
name = "Rubocop"
languages = ["Ruby"]
[language_servers.steep]
name = "Steep"
languages = ["Ruby"]
[language_servers.sorbet]
name = "Sorbet"
languages = ["Ruby"]
[language_servers.herb]
name = "Herb"
languages = ["HTML+ERB"]
[language_servers.kanayago]
name = "Kanayago"
languages = ["Ruby"]
[grammars.ruby]
repository = "https://github.com/tree-sitter/tree-sitter-ruby"
commit = "71bd32fb7607035768799732addba884a37a6210"
[grammars.embedded_template]
repository = "https://github.com/tree-sitter/tree-sitter-embedded-template"
commit = "c70c1de07dedd532089c0c90835c8ed9fa694f5c"
[grammars.rbs]
repository = "https://github.com/joker1007/tree-sitter-rbs"
commit = "5282e2f36d4109f5315c1d9486b5b0c2044622bb"
[[capabilities]]
kind = "process:exec"
command = "gem"
args = ["install", "--norc", "--no-user-install", "--no-format-executable", "--no-document", "*"]
[[capabilities]]
kind = "process:exec"
command = "gem"
args = ["uninstall", "--norc", "*", "--version", "*"]
[[capabilities]]
kind = "process:exec"
command = "gem"
args = ["list", "--norc", "--exact", "*"]
[[capabilities]]
kind = "process:exec"
command = "bundle"
args = ["info", "--version", "*"]
[[capabilities]]
kind = "process:exec"
command = "gem"
args = ["outdated", "--norc"]
[[capabilities]]
kind = "process:exec"
command = "gem"
args = ["update", "--norc", "*"]
[[capabilities]]
kind = "process:exec"
command = "ruby"
args = ["--version"]
[debug_adapters.rdbg]
[debug_locators.ruby]