-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
34 lines (30 loc) · 1022 Bytes
/
extension.json
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
{
"identifier": "org.lodea.Scala",
"name": "Scala",
"organization": "Lachlan O'Dea",
"description": "Syntax and LSP support for the Scala language.",
"version": "0.1",
"categories": ["languages"],
"main": "main.js",
"entitlements": {
"process": true,
"filesystem": "readonly"
},
"bugs": "https://github.com/quelgar/nova-scala/issues",
"repository": "https://github.com/quelgar/nova-scala",
"license": "Apache 2",
"config": [
{
"key": "scala.language-server-path",
"title": "Path to metals executable (defaults to Coursier location)",
"type": "path",
"placeholder": "~/Library/Application Support/Coursier/bin/metals"
},
{
"key": "scala.java-home",
"title": "Java home path (defaults to $JAVA_HOME)",
"type": "path",
"placeholder": "/Library/Java/JavaVirtualMachines/openjdk-22.jdk/Contents/Home"
}
]
}