24 lines
619 B
JSON
24 lines
619 B
JSON
|
{
|
||
|
"[c]": {
|
||
|
"files.encoding": "utf8",
|
||
|
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
|
||
|
},
|
||
|
"[cpp]": {
|
||
|
"files.encoding": "utf8",
|
||
|
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
|
||
|
},
|
||
|
"[python]": {
|
||
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
||
|
},
|
||
|
// "editor.tabSize": 2,
|
||
|
"files.autoSave": "onFocusChange",
|
||
|
"files.insertFinalNewline": true,
|
||
|
"files.trimFinalNewlines": true,
|
||
|
"files.associations": {
|
||
|
"*.inc": "c",
|
||
|
".clangd": "yaml"
|
||
|
},
|
||
|
// Disable C/C++ IntelliSense, use clangd instead
|
||
|
"C_Cpp.intelliSenseEngine": "disabled",
|
||
|
}
|