blob: f6fbca2f86778fb0237a7768a63bf615e47b8e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
// CMake Configuration
"cmake.configureOnOpen": true,
"cmake.useCMakePresets": "always",
// C++ Configuration
"[cpp]": {
"editor.formatOnSave": true
},
"C_Cpp.autoAddFileAssociations": false,
"C_Cpp.intelliSenseEngine": "disabled",
"C_Cpp.errorSquiggles": "disabled",
"C_Cpp.autocomplete": "disabled",
"clangd.enable": true,
// RST Configuration
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
}
|