{
"editor.fontSize": 18, //工作台字体的大小
"window.zoomLevel": 0, //设置窗口的缩放级别
"workbench.colorTheme": "Visual Studio Dark", //设置工作台的主题
"workbench.iconTheme": null, //设置文件的图标
"editor.formatOnType": true, //设置保存文件时自动格式化代码
"editor.formatOnSave": true, //保存时,格式化文本
"files.autoGuessEncoding": true, //通过猜测判断文本的编码
"files.encoding": "gb2312", //读取或写入文件的默认字符编码
"breadcrumbs.enabled": true, //设置导航是否启用
"editor.renderWhitespace": "none", //控制编辑器在空白字符上显示符号的方式
"editor.minimap.enabled": false, //设置是否显示缩略图
"workbench.sideBar.location": "left", //设置活动栏显示的位置,左侧或右侧
"terminal.integrated.shell.windows": "D:\\ProgramFiles\\ESP32\\msys32\\msys2_shell.cmd", //终端在 Windows上使用的shell的路径
"terminal.integrated.shellArgs.windows": [ //在 Windows 终端上时要使用的命令行参数
"-defterm",
"-mingw32",
"-no-start",
"-here"
],
"git.ignoreMissingGitWarning": false, //忽略“缺失 Git”的警告
"files.exclude": { //配置用于排除文件和文件夹的 glob 模式
"**/CVS": false
},
"editor.tabSize": 4, //一个制表符等于的空格数
"editor.insertSpaces": true, //按 Tab 键时插入空格
"editor.trimAutoWhitespace": true,
"C_Cpp.updateChannel": "Insiders", //删除自动插入的尾随空白符号
"explorer.confirmDelete": false,
"C_Cpp.default.includePath": [
"E:/ESP32/esp-idf-v3.3/**"
],
"C_Cpp.default.browse.path": [
"E:/ESP32/esp-idf-v3.3/**"
],
"C_Cpp.errorSquiggles": "Disabled",
"http.proxySupport": "off",
"editor.semanticHighlighting.enabled": true
}