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
|
{
"folders": [
{
"name": "gamp",
"path": "/usr/local/projects/jausoft/gamp"
}
],
"settings": {
// "security.workspace.trust.untrustedFiles": "open",
// "window.openFilesInNewWindow": "on",
// "window.zoomLevel": 0.5,
// "editor.fontSize": 11.5,
// "editor.lineHeight": 1.22,
// "editor.fontWeight": "normal",
// "editor.fontFamily": "'DejaVu Sans Mono', 'monospace', monospace",
// "editor.guides.indentation": false,
// "editor.renderWhitespace": "none",
// "editor.cursorStyle": "line",
// "editor.semanticTokenColorCustomizations": {
// },
// "editor.tokenColorCustomizations": {
// "[Visual Studio Light]": {}
// },
// "workbench.colorTheme": "Visual Studio Light",
"workbench.editor.labelFormat": "medium",
"[cpp]": {
"breadcrumbs.showKeys": true,
"breadcrumbs.showArrays": true,
"editor.hover.enabled": true,
"breadcrumbs.showFunctions": true,
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
},
"clangd.onConfigChanged": "restart",
"clangd.checkUpdates": true,
// "clangd.path": "/home/sven/.config/VSCodium/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/15.0.3/clangd_15.0.3/bin/clangd",
"clangd.arguments": [
"--background-index"
],
"files.associations": {
"*.hpp": "cpp",
"*.cpp": "cpp",
"*.cxx": "cpp"
},
"ShortcutMenuBar.compareWithSaved": false,
"ShortcutMenuBar.openFilesList": false,
"ShortcutMenuBar.saveAll": true,
"ShortcutMenuBar.toggleTerminal": false,
"ShortcutMenuBar.userButton01Command": "clangd.inlayHints.toggle",
"ShortcutMenuBar.userButton02Command": "clangd.memoryUsage",
"ShortcutMenuBar.userButton03Command": "workbench.action.reloadWindow",
"ShortcutMenuBar.userButton04Command": "clangd.restart",
// "clang-tidy.buildPath": "${workspaceFolder}/build/default",
// "C_Cpp.default.cppStandard": "c++20",
},
"extensions": {
"recommendations": [
"llvm-vs-code-extensions.vscode-clangd", "twxs.cmake", "ms-vscode.cmake-tools",
"notskm.clang-tidy",
"cschlosser.doxdocgen",
"jerrygoyal.shortcut-menu-bar"
]
}
}
|