forked from thesecretclub/riscy-business
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy path.code-workspace
More file actions
73 lines (73 loc) · 2.19 KB
/
.code-workspace
File metadata and controls
73 lines (73 loc) · 2.19 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"folders": [
{
"path": "."
},
{
"path": "payload"
},
{
"path": "riscvm"
},
{
"path": "transpiler"
}
],
"settings": {
"files.exclude": {
"**/.cache": true,
"**/.clang-format": true,
"**/.editorconfig": true,
"**/.gitattributes": true,
"**/.gitignore": true,
"**/.vscode": true,
"**/.github": true
},
"files.autoSave": "off",
"workbench.startupEditor": "none",
"editor.formatOnSave": false,
"C_Cpp.intelliSenseEngine": "disabled",
"[cpp]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "xaver.clang-format"
},
"[c]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
},
"[json]": {
"editor.formatOnSave": true
},
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}/build",
"-header-insertion=never",
"--function-arg-placeholders=0"
],
"clang-format.executable": "clang-format-20",
"clangd.path": "clangd-20",
"cmake.configureOnOpen": false,
"cmake.useCMakePresets": "always",
"cmake.options.statusBarVisibility": "hidden",
"cmake.ignoreCMakeListsMissing": true,
"cmake.showOptionsMovedNotification": false, // https://github.com/microsoft/vscode-cmake-tools/issues/3423#issuecomment-2002011868
"cmake.skipConfigureIfCachePresent": false,
"cmake.options.advanced": {
"build": {
"statusBarVisibility": "visible"
},
"launch": {
"statusBarVisibility": "visible"
},
"debug": {
"statusBarVisibility": "visible"
},
"buildTarget": {
"statusBarVisibility": "visible"
},
"launchTarget": {
"statusBarVisibility": "visible"
}
},
"git.blame.editorDecoration.enabled": false
}
}