Update VS Code settings

This commit is contained in:
Aoran Zeng 2025-08-07 22:34:06 +08:00
parent e500140bc6
commit fdfd1b20ce
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98

17
.vscode/settings.json vendored
View File

@ -1,11 +1,16 @@
{ {
"C_Cpp.clang_format_fallbackStyle": "none", "editor.fontLigatures": false,
"C_Cpp.default.browse.limitSymbolsToIncludedHeaders": false,
"C_Cpp.formatting": "disabled",
"C_Cpp.intelliSenseEngine": "Tag Parser", "C_Cpp.intelliSenseEngine": "Tag Parser",
"C_Cpp.default.browse.limitSymbolsToIncludedHeaders": false,
"editor.formatOnSave": false,
"C_Cpp.clang_format_fallbackStyle": "GNU",
"C_Cpp.formatting": "disabled",
"[c]": { "[c]": {
"editor.defaultFormatter": null, "editor.defaultFormatter": null,
"editor.tabSize": 2
}, },
"[h]": { "[h]": {
"editor.defaultFormatter": null "editor.defaultFormatter": null
@ -16,6 +21,6 @@
"[yaml]": { "[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml" "editor.defaultFormatter": "redhat.vscode-yaml"
}, },
"editor.formatOnSave": false,
"vscode-just.formatOnSave": false "vscode-just.formatOnSave": false,
} }