37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json",
|
|
"C_Cpp.default.cppStandard": "c++17",
|
|
"C_Cpp.default.cStandard": "c11",
|
|
"C_Cpp.default.intelliSenseMode": "linux-gcc-x64",
|
|
"C_Cpp.clang_format_style": "file",
|
|
"C_Cpp.clang_format_fallbackStyle": "none",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"editor.rulers": [
|
|
100
|
|
],
|
|
"editor.tabSize": 8,
|
|
"editor.insertSpaces": false,
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"[c]": {
|
|
"editor.defaultFormatter": "ms-vscode.cpptools",
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 8,
|
|
"editor.insertSpaces": false
|
|
},
|
|
"[cpp]": {
|
|
"editor.defaultFormatter": "ms-vscode.cpptools",
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 8,
|
|
"editor.insertSpaces": false
|
|
},
|
|
"[h]": {
|
|
"editor.defaultFormatter": "ms-vscode.cpptools",
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 8,
|
|
"editor.insertSpaces": false
|
|
}
|
|
}
|