VSCode常用插件和通用配置
程序员文章站
2022-07-05 20:39:27
...
插件
Auto Close Tag
Auto Rename Tag
Bracket Pair Colorizer
Chinese Language
EditorConfig for VS Code
eggjs
GitLens
Image Preview
Material Icon Theme
minapp
Monokai Pro
NGINX Configuration
nginx-formatter
open in browser
Path Intellisense
Prettier - Code formatter
Project Manager
Vetur
vscode-fileheader
User Settings
{
"vetur.format.options.tabSize": 4,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.ts": "vscode-typescript",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-aligned"
}
},
"vetur.format.scriptInitialIndent": true,
"vetur.format.styleInitialIndent": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.fontSize": 15,
"editor.tabSize": 4,
"editor.lineHeight": 28,
"vetur.experimental.templateInterpolationService": false,
"vetur.useWorkspaceDependencies": true,
"editor.formatOnSave": true,
"workbench.iconTheme": "Monokai Pro (Filter Octagon) Icons",
"fileheader.Author": "henry.zhou",
"fileheader.LastModifiedBy": "henry.zhou",
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"update.mode": "none",
"editor.wordSeparators": "`aaa@qq.com#$%^&*()=+[{]}\\|;:'\",.<>/?",
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript"
},
"emmet.includeLanguages": {
"wxml": "html"
},
"minapp-vscode.disableAutoConfig": true,
"terminal.integrated.shellArgs.osx": [],
"editor.renameOnType": true,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"timeline.excludeSources": []
}