最喜爱的VS Code设置

       做前端整整两年了,用过Eclipse,Sublime Text,  HBuilder, Webstorm,Atom, 最喜欢的还是VS Code,  理由有很多,其他的都不重要,重要的是自己喜欢,而且免费的。好的外观写出好的代码

VS Code 颜色主题: Snazzy Operator ,或者  Atom One Dark Theme

{
    "workbench.colorTheme": "Snazzy Operator",
    "editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
    "editor.fontSize": 18,
    "editor.fontWeight": "400",
    "editor.fontLigatures": true,
    "editor.lineHeight": 22,
    "editor.letterSpacing": 0.5,
    "editor.cursorStyle": "line",
    "editor.cursorWidth": 5,
    "editor.cursorBlinking": "solid",
}

打卡 VS Code 设置界面, 默认情况是图形界面,点击左上角的 打开设置JSON,就会显示上面的settings.json文件,当然还有其它的打开方式。复制上面的内容就可

最喜爱的VS Code设置_第1张图片

设置文件图标主题:Material Icon Theme

最喜爱的VS Code设置_第2张图片

也是我最新的ICON图标设置样式。

3, 最常用的VS Code 快捷键

   

快捷键
  Windows  MAC

 打开Terminal

(使用较多)

Ctrl + ` Control + `

当前行的下一行写代码

(使用较多)

Ctrl + Enter Command + Enter

当前行或 选中的内容向下移动

(使用较多)

Alt + ↓ Option + ↓

当前行或 选中的内容向上移动

(使用较多)

Alt + ↑ Option + ↑
     
     

  

你可能感兴趣的:(Web前端)