#### 安装插件
```
Auto Close Tag
Live Server
css peek
open in browser
Path Autocomplete
Html Css Support
Auto Rename Tag
Color Highlight
Vetur
```
#### 常用快捷键
`ctrl+shift+z`撤销撤回的
`ctrl + f`在当前页面查找
`alt + 箭头上(下)`向上向下移动本行
#### 设置ctrl + w 在默认浏览器打开
```
[
{ "key": "alt+/", "command": "editor.action.triggerSuggest","when": "editorTextFocus" },
{ "key": "ctrl+d", "command": "editor.action.deleteLines","when": "editorTextFocus" },
{ "key": "ctrl+alt+down","command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
{ "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" },
{ "key": "shift+enter", "command": "editor.action.insertLineAfter", "when": "editorTextFocus && !editorReadonly" } ,
{
"key": "ctrl+w","command": "extension.openInBrowser" , "when": "editorTextFocus" },
{
"key":"ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus"
}
]
```
### 皮肤
```
{
"workbench.colorTheme": "Atom One Dark",
"workbench.iconTheme": "vscode-icons",
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.fontWeight": "600",
"window.zoomLevel": 0,
"easysass.formats": [
{
"format": "expanded",
"extension": ".css"
}
],
"editor.tabSize": 2,
"px-to-rem.px-per-rem": 75,
"cssrem.rootFontSize": 75,
"breadcrumbs.enabled": true
}
```
### 解决 rg.exe 占用内存过大的问题
```
search.followSymlinks: false
```