1、安装插件
open in browser
Path Intellisense
Auto Close Tag
Live Server
css peek
HTML CSS Support
Auto Rename Tag
Color Highlight
Beautify
//文件图标主题
vscode-icons
//颜色主题
Atom One Dark Theme
One Dark Pro
//代码执行
Code Runner
//实现毛玻璃效果
Vibrancy
Windows opacity
2、设置用户代码片段html.json
{
"inset jquery":{
"prefix":"jq",
"body":[
"<script src=\"https://cdn.bootcss.com/jquery/3.4.1/jquery.js\"></script>"
],
"description": "insert jquery"
},
"insert VUE":{
"prefix": "vue",
"body": [
"<script src=\"https://cdn.bootcss.com/vue/2.6.10/vue.js\"></script>"
],
"description": "insert VUE"
}
}