-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathextension.toml
More file actions
55 lines (45 loc) · 1.48 KB
/
extension.toml
File metadata and controls
55 lines (45 loc) · 1.48 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
id = "xmake"
name = "XMake"
version = "0.1.0"
schema_version = 1
authors = ["Burak Aksoy ornatus_albifrons@proton.me"]
description = "Full-featured XMake build system support with xmake_ls language server integration, syntax highlighting, and build tasks"
repository = "https://github.com/xmake-io/xmake-zed"
[language_servers.xmake-ls]
name = "xmake_ls"
languages = ["xmake"]
[configuration]
type = "object"
title = "XMake Settings"
[configuration.properties.linuxVariant]
type = "string"
default = "auto"
description = "Linux binary variant (musl, x64-glibc.2.17, x64, aarch64-glibc.2.17)"
[configuration.properties.logLevel]
type = "string"
default = "Info"
enum = ["Error", "Warning", "Info", "Debug", "Trace"]
description = "Language server log level"
[configuration.properties.enableDiagnostics]
type = "boolean"
default = true
description = "Enable diagnostic reporting"
[configuration.properties.enableCompletion]
type = "boolean"
default = true
description = "Enable code completion"
[configuration.properties.enableHover]
type = "boolean"
default = true
description = "Enable hover information"
[configuration.properties.enableCodeActions]
type = "boolean"
default = true
description = "Enable code actions and quick fixes"
[configuration.properties.xmakePath]
type = "string"
default = ""
description = "Path to xmake executable (empty for auto-detect)"
[grammars.lua]
repository = "https://github.com/tree-sitter-grammars/tree-sitter-lua"
commit = "d76023017f7485eae629cb60d406c7a1ca0f40c9"