1. 程式人生 > >vscode用戶設置

vscode用戶設置

tabstop -a hang sta icon 文件中 version nta tin

目前配置適用於vscode 1.24.1,1.25.1,1.28.1,推薦使用1.28.1,win7系統界面配色更加統一

插件目前建議必裝 Chinese, Beautify, C/C++, Python 插件,其他插件將在稍後使用時安裝。

pasting

// 將設置放入此文件中以覆蓋默認設置{ // 以像素為單位控制字號。 "editor.fontSize": 18, // 控制已更新文件的自動保存。接受的值:“off”、"afterDelay”、"onFocusChange”(編輯器失去焦點)、"onWindowChange”(窗口失去焦點)。如果設置為“afterDelay”,則可在 "files.autoSaveDelay" 中配置延遲。
"files.autoSave": "onFocusChange", // 配置 glob 模式以排除文件和文件夾。 "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/.DS_Store": true }, // 控制 Markdown 預覽中使用的字號(以像素為單位)。 "markdown.preview.fontSize": 16, // 控制終端的字號(以像素為單位)。 "terminal.integrated.fontSize": 16, "window.zoomLevel"
: 0, //"workbench.iconTheme": "vscode-icons", //"vsicons.dontShowNewVersionMessage": true, //"workbench.colorTheme": "Solarized Light", "workbench.colorTheme": "Monokai", "editor.renderWhitespace": "all", "editor.fontFamily": "‘Courier New‘, Menlo, Monaco, monospace", "window.openFilesInNewWindow": "off"
, "[c]": { "editor.insertSpaces": true, "editor.tabSize": 4, "files.insertFinalNewline": true, "editor.detectIndentation": true, "editor.quickSuggestions": { "other": true, "comments": true, "strings": false }, "editor.autoIndent": true, "editor.useTabStops": true, "editor.renderWhitespace": "none", "editor.trimAutoWhitespace": true, "editor.fontWeight": "normal", "editor.wrappingIndent": "indent", "editor.quickSuggestionsDelay": 10, "editor.emptySelectionClipboard": true, "editor.parameterHints": true }, "[cpp]": { "editor.insertSpaces": true, "editor.tabSize": 4, "files.insertFinalNewline": true, "editor.detectIndentation": true, "editor.quickSuggestions": { "other": true, "comments": true, "strings": false }, "editor.autoIndent": true, "editor.useTabStops": true, "editor.renderWhitespace": "none", "editor.trimAutoWhitespace": true, "editor.fontWeight": "normal", "editor.wrappingIndent": "indent", "editor.quickSuggestionsDelay": 10, "editor.emptySelectionClipboard": true, "editor.parameterHints": true }, "beautify.config": { "indent_size": 2, "indent_char": " ", "css": { "indent_size": 2 }, "html": { "indent_size": 2 } }, "extensions.ignoreRecommendations": false, "editor.formatOnSave": true, // "workbench.panel.location": "bottom", "editor.fontWeight": "bold", "update.enableWindowsBackgroundUpdates": false, //"window.menuBarVisibility": "toggle", "workbench.statusBar.feedback.visible": false, "git.ignoreMissingGitWarning": true, "editor.mouseWheelZoom": true, "files.insertFinalNewline": true, "files.trimTrailingWhitespace": true}

vscode用戶設置