我爱编程

VS code 简单配置

2018-05-15  本文已影响0人  猫局

项目管理插件

  1. VScode_icons: 语言图标显示
  2. Project Manage: 项目管理

自动格式化代码

  1. Ctrl K+Ctrl D
  2. beautify;

一键安装不同语言的测试环境

Code Runner: 需安装 node.js/python/GCC 等相应的运行环境

自动检测代码规范

ESLint: 需要进行配置

前端Chrome 联动调试

Debugger for Chrome: 配置 launch.js 文件

  1. launch Chrome
  2. attach to Chrome: 1. 临时; 2. 永久

提升React 等前端开发效率的插件

  1. npm
  2. npm intellisense
  3. path intellisense
  4. typescript hero
  5. Intellisense for CSS class name

继承美化终端

打开terminal: ctrl+`
配置setting:

 "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", // 使用git bash  
 "terminal.integrated.confirmOnExit": true,  //退出终端需确认  
 "terminal.integrated.fontFamily": "'Consolas','华文细黑'", // 终端字体  
 "terminal.integrated.cursorStyle": "line" //光标为线而不是方块```

上一篇 下一篇

猜你喜欢

热点阅读