前言
正文
插件
- Auto Close Tag
- Auto Rename Tag
- Image preview
- Chinese (Simplified) Language Pack for Visual Studio Code
- Code Spell Checker
- File Peek
- Highlight Matching Tag
- HTML CSS Support
- HTML Snippets
- Import Cost
- JavaScript (ES6) code snippets
- jQuery Code Snippets
- JS-CSS-HTML Formatter
- Markdown Preview Enhanced
- SCSS Formatter
- Vetur
- vscode-icons-mac
- vue-beautify
- VueHelper
- open in browser
次要插件
- Polacode-2019 生成美观的代码片段截图
主题
- 颜色主题 Light (Visual Studio)
- 文件主题图标 VSCode Icons Mac
旧配置 settings.json
Settings File Locations
Depending on your platform, the user settings file is located here:
Windows:
%APPDATA%\Code\User\settings.json
Mac:
$HOME/Library/Application Support/Code/User/settings.json
Linux:
$HOME/.config/Code/User/settings.json
{ "gitlens.advanced.messages": { "suppressShowKeyBindingsNotice": true }, "emmet.syntaxProfiles": { "javascript": "jsx" }, "editor.minimap.enabled": false, // 控制是否显示缩略图 "window.zoomLevel": 0, "files.associations": { "*.cjson": "jsonc", "*.wxss": "css", "*.wxs": "javascript", "*.acss": "css", "*.axml": "html", "*.postcss": "scss" }, "emmet.includeLanguages": { "wxml": "html" }, "minapp-vscode.disableAutoConfig": true, "javascript.updateImportsOnFileMove.enabled": "always", "terminal.integrated.rendererType": "dom", "[html]": { "editor.defaultFormatter": "vscode.html-language-features" }, "workbench.iconTheme": "vscode-icons-mac", "[vue]": {}, "[css]": { "editor.defaultFormatter": "HookyQR.beautify" }, "[scss]": { "editor.defaultFormatter": "HookyQR.beautify" }, "search.followSymlinks": false, "vsicons.dontShowNewVersionMessage": true, "workbench.colorTheme": "Visual Studio Light", "explorer.confirmDelete": false, "gitlens.gitCommands.closeOnFocusOut": true, "[json]": { "editor.defaultFormatter": "HookyQR.beautify" }, "[jsonc]": { "editor.defaultFormatter": "vscode.json-language-features" }, "[javascript]": { "editor.defaultFormatter": "vscode.typescript-language-features" } }