vscode user setting and common plugins

记录下vscode的个人配置, keep updating

Preference

setting.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

{
"window.zoomLevel": 0,
"editor.fontSize": 30,
"workbench.statusBar.visible": true,
"window.menuBarVisibility": "toggle",
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},

// 控制是否及何种情况下在新tab内打开文件
// Controls if opened editors show as preview. Preview editors are reused until they are kept (e.g. via double click or editing).
"workbench.editor.enablePreview": true,
// Controls if opened editors from Quick Open show as preview. Preview editors are reused until they are kept (e.g. via double click or editing).
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.sideBar.location": "left",

// Scans devDependencies as well
// npm intellisense 默认只提示dev dependencies
"npm-intellisense.scanDevDependencies": true,
}

plugins

  • Beautify
  • Easy Less
  • ESLint
  • Npm Intellisense
  • Open In Browser
  • Path Intellisense
  • Preview => markdown preview
  • Pug Snippets
  • Pug Beautify => format pug(jade)
  • Python
  • Sublime Text Keymap
  • Vetur