forked from lite-xl/lite-xl-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
149 lines (149 loc) · 4.06 KB
/
manifest.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"addons": [{
"id": "build",
"version": "0.1",
"mod_version": "3",
"description": "Provides a build system, messages window, and easily clickable errors. Supports an internal build system, and `make`. *([screenshot](https://raw.githubusercontent.com/adamharrison/lite-xl-ide/main/screenshots/build.png))*",
"path": "plugins/build",
"dependencies": {
"json": {}
}
}, {
"id": "debugger",
"version": "0.1",
"mod_version": "3",
"description": "Provides a debugger integration, with pluggable backends. Currently supports only gdb. *([screenshot](https://raw.githubusercontent.com/adamharrison/lite-xl-ide/main/screenshots/debugger.png))*",
"path": "plugins/debugger",
"dependencies": {
"json": {}
}
}, {
"id": "ide",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that provides the minimum functionalities for Lite XL to run as a minimal IDE.",
"path": "plugins/ide.lua",
"dependencies": {
"meta_colors": {},
"meta_languages": {},
"align_carets": { "optional": true },
"autoinsert": {},
"autosave": {},
"bracketmatch": {},
"colorpreview": {},
"extend_selection_line": {},
"indentguide": {},
"lfautoinsert": {},
"lintplus": {},
"lsp": {},
"lsp_snippets": {},
"minimap": {},
"opacity": { "optional": true },
"rainbowparen": { "optional": true },
"scalestatus": { "optional": true },
"selectionhighlight": {},
"snippets": {},
"sticky_scroll": { "optional": true },
"todotreeview": { "optional": true },
"scm": {},
"gitblame": { "optional": true },
"terminal": {}
}
}, {
"id": "ide_c",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for C/C++.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"build": {},
"debugger": {},
"lsp_c": {}
}
}, {
"id": "ide_java",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for Java.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_java": {}
}
}, {
"id": "ide_javascript",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for Javascript.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_typescript": {},
"lsp_quicklintjs": {}
}
}, {
"id": "ide_lua",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for Lua.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_lua": {}
}
}, {
"id": "ide_python",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for Python.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_python": {}
}
}, {
"id": "ide_rust",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for Rust.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_rust": {}
}
}, {
"id": "ide_tex",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for TeX.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_tex": {}
}
}, {
"id": "ide_typescript",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for Typescript.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_typescript": {}
}
}, {
"id": "ide_zig",
"version": "0.1",
"mod_version": "3",
"description": "A metapackage that turns Lite XL into an IDE for Zig.",
"path": "plugins/ide.lua",
"dependencies": {
"ide": {},
"lsp_zig": {}
}
}],
"remotes": [
"https://github.com/adamharrison/lite-xl-lsp-servers:master"
]
}