-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.json
66 lines (66 loc) · 1.59 KB
/
settings.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
{
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[zig]": {
"editor.defaultFormatter": "ziglang.vscode-zig"
},
"editor.formatOnSave": true,
"editor.rulers": [
100
],
"files.exclude": {
".editorconfig": true,
".github": true,
".github/workflows/ci.yml": true,
".gitignore": true,
".prettierignore": true,
".prettierrc.json": true,
".vscode": true,
".vscode/extensions.json": true,
".vscode/settings.json": true,
"ci.sh": true,
"zig-cache": true,
"zig-out": true
},
"json.schemaDownload.enable": true,
"json.schemas": [
{
"fileMatch": [
"onecfg*.json"
],
"url": "https://raw.githubusercontent.com/clebert/onecfg-rust/main/schema.json"
}
],
"zig.buildOnSave": true,
"zig.initialSetupDone": true,
"zig.zls.enableBuildOnSave": true,
"zig.zls.enableInlayHints": false
}