From fdfd1b20cebef0ff85a9527cac650019cfb07420 Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Thu, 7 Aug 2025 22:34:06 +0800 Subject: [PATCH] Update VS Code settings --- .vscode/settings.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 43dec6b..74669f2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,11 +1,16 @@ { - "C_Cpp.clang_format_fallbackStyle": "none", - "C_Cpp.default.browse.limitSymbolsToIncludedHeaders": false, - "C_Cpp.formatting": "disabled", + "editor.fontLigatures": false, + "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]": { "editor.defaultFormatter": null, - "editor.tabSize": 2 }, "[h]": { "editor.defaultFormatter": null @@ -16,6 +21,6 @@ "[yaml]": { "editor.defaultFormatter": "redhat.vscode-yaml" }, - "editor.formatOnSave": false, - "vscode-just.formatOnSave": false -} \ No newline at end of file + + "vscode-just.formatOnSave": false, +}