mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-07-11 13:08:34 -04:00
1b0b96665a
Co-authored-by: NWPlayer123 <NWPlayer123@users.noreply.github.com>
23 lines
579 B
JSON
23 lines
579 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.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.associations": {
|
|
"*.inc": "c",
|
|
".clangd": "yaml"
|
|
},
|
|
// Disable C/C++ IntelliSense, use clangd instead
|
|
"C_Cpp.intelliSenseEngine": "disabled",
|
|
}
|