settings.json
{
"arduino.sketchbook.showAllFiles": true, //显示项目中的文件夹
"editor.fontSize": 14, //编辑器字体大小
"arduino.window.autoScale": true, //界面比例-自动缩放
"window.zoomLevel": 0.25, //界面比例
"workbench.colorTheme": "arduino-theme-dark", //颜色主题
"arduino.compile.verbose": true, //显示详细输出-编译
"arduino.upload.verbose": true, //显示详细输出-上传
"arduino.compile.warnings": "Default", //编译器警告
"arduino.upload.verify": true, //上传后验证代码
"files.autoSave": "afterDelay", //自动保存
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}, //编辑快速建议
"arduino.cloud.enabled": false, //显示/隐藏云端项目
"window.titleBarStyle": "native" //窗口标题栏外观
}