更新 settings.json

This commit is contained in:
colin 2025-09-10 20:21:14 +08:00
parent 42e039c91c
commit 26ea4e99cc
1 changed files with 12 additions and 10 deletions

View File

@ -1,8 +1,8 @@
{ {
"editor.tabSize": 2, "editor.tabSize": 2,
"[cpp]": { // "[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools" // "editor.defaultFormatter": "ms-vscode.cpptools"
}, // },
"editor.rulers": [ "editor.rulers": [
80 80
], ],
@ -120,12 +120,8 @@
"workbench.tree.indent": 28, "workbench.tree.indent": 28,
"workbench.tree.renderIndentGuides": "always", "workbench.tree.renderIndentGuides": "always",
"systemverilog.maxLineCountIndexing": 1000000, "systemverilog.maxLineCountIndexing": 1000000,
"C_Cpp.clang_format_fallbackStyle": "google",
"C_Cpp.clang_format_style": "google",
"cmake.configureOnEdit": false, "cmake.configureOnEdit": false,
"window.zoomLevel": 1.2, "window.zoomLevel": 0.6,
"editor.minimap.showSlider": "always",
"editor.minimap.renderCharacters": false,
"editor.autoClosingBrackets": "never", "editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never", "editor.autoClosingQuotes": "never",
"editor.autoClosingOvertype": "never", "editor.autoClosingOvertype": "never",
@ -158,7 +154,7 @@
"workbench.action.tasks.configureTaskRunner", "workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask" "workbench.action.tasks.runTask"
], ],
"diffEditor.ignoreTrimWhitespace": true, "diffEditor.ignoreTrimWhitespace": false,
"editor.stickyScroll.enabled": false, "editor.stickyScroll.enabled": false,
"continue.showInlineTip": false, "continue.showInlineTip": false,
"explorer.confirmDragAndDrop": false, "explorer.confirmDragAndDrop": false,
@ -169,7 +165,13 @@
"continue.enableTabAutocomplete": false, "continue.enableTabAutocomplete": false,
"makefile.configureOnOpen": true, "makefile.configureOnOpen": true,
"editor.accessibilitySupport": "off", "editor.accessibilitySupport": "off",
"workbench.statusBar.visible": false,
"extensions.autoCheckUpdates": false, "extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false, "extensions.autoUpdate": false,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"C_Cpp.clang_format_style": "{BasedOnStyle: google, ColumnLimit: 120}",
"C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: google, ColumnLimit: 120}",
"editor.defaultFormatter": "xaver.clang-format",
"clang-format.style": "{BasedOnStyle: google, ColumnLimit: 120}",
"workbench.statusBar.visible": false
} }