vscode用戶設置


目前配置適用於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
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM