-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdelve-framework-example.code-workspace
More file actions
44 lines (39 loc) · 1.08 KB
/
delve-framework-example.code-workspace
File metadata and controls
44 lines (39 loc) · 1.08 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"zig.zls.enabled": "on",
// You can add more Zig and ZLS options here
// Whether to enable build-on-save diagnostics
//
// Further information about build-on save:
// https://zigtools.org/zls/guides/build-on-save/
"zig.buildOnSaveProvider": "extension",
"zig.buildOnSaveArgs": ["check"],
// All nested settings will only affect Zig files.
"[zig]": {
// Formatting with ZLS matches `zig fmt`.
// "editor.formatOnSave": false,
// "editor.inlayHints.enabled": "off",
// overwrite words when accepting completions
"editor.suggest.insertMode": "replace",
"editor.codeActionsOnSave": {
// Run code actions that currently supports adding and removing discards.
// "source.fixAll": "explicit",
// Run code actions that sorts @import declarations.
// "source.organizeImports": "explicit",
}
},
"editor.semanticTokenColorCustomizations": {
"rules": {
"*.deprecated": {
// highlight semantic tokens that are marked as "deprecated"
"strikethrough": true
}
}
}
}
}