欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vscode的setting.json个人配置

程序员文章站 2022-06-26 12:01:32
...

vscode这个编辑器,前端工作人员使用的非常多,我也是经常使用,每次在新的电脑上使用时都要重新写setting.json配置,感觉很麻烦,就写了这篇文章记录下自己的一些常用配置。顺便说一句,setting.json配置没有最好的,只有最适合自己的。

{
  "workbench.iconTheme": "material-icon-theme", // 使用的文件图标主题
  "editor.fontSize": 14, // 字体大小,
  "editor.tabSize": 2, // tab 空格数
  "window.zoomLevel": 1, // 窗口的缩放级别
  // 在使用搜索功能时,将这些文件夹/文件排除在外
  "search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/target": true,
    "**/logs": true
  },
}