From e2bc0305579bc0f59d08d250dadf306c902af52e Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 22 Jan 2026 12:19:49 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Extension=20recommendations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 20 +++++++++++++------- .vscode/extensions.json | 12 ++++++++++++ 2 files changed, 25 insertions(+), 7 deletions(-) create mode 100644 .vscode/extensions.json diff --git a/.gitignore b/.gitignore index 4df25d5934..a9b2e20b64 100755 --- a/.gitignore +++ b/.gitignore @@ -22,12 +22,16 @@ # Generated files _Version.h bdf2u8g +marlin_config.json +mczip.h +*.gen +*.sublime-workspace # # OS # applet/ -*.DS_Store +.DS_Store # # Misc @@ -37,7 +41,6 @@ applet/ *.rej *.bak *.idea -*.s *.i *.ii *.swp @@ -137,16 +140,19 @@ __vm/ vc-fileutils.settings # Visual Studio Code -.vscode -.vscode/.browse.c_cpp.db* -.vscode/c_cpp_properties.json -.vscode/launch.json -.vscode/*.db +.vscode/* +!.vscode/extensions.json + +#Simulation +imgui.ini +eeprom.dat +spi_flash.bin # cmake CMakeLists.txt src/CMakeLists.txt CMakeListsPrivate.txt +build/ # CLion cmake-build-* diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000000..52fe2a0bdb --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,12 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "marlinfirmware.auto-build", + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode-remote.remote-containers", + "ms-vscode.cpptools-extension-pack" + ] +}