VSCode配置
settings.json
json
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"git.confirmSync": false,
"editor.tabSize": 2,
"editor.fontSize": 18,
"liveServer.settings.donotShowInfoMsg": true,
"files.autoSave": "afterDelay",
"[vue]": {
"editor.defaultFormatter": "Vue.volar"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.iconTheme": "material-icon-theme",
"files.associations": {
"*.vue": "vue"
},
"editor.minimap.enabled": false,
"Codegeex.Privacy": true,
"editor.cursorBlinking": "expand",
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "Sarasa Mono K, Fira Code, Source Code Pro, Consolas, 'Courier New', monospace",
"editor.fontWeight": "500",
"editor.fontLigatures": false,
"liveServer.settings.donotVerifyTags": true,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.fontVariations": false,
"turboConsoleLog.quote": "'",
"terminal.integrated.fontSize": 18,
"terminal.integrated.copyOnSelection": true, // 终端选中文本自动复制
}
2023/03/18