#### 安裝插件
```
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
```