Set up embedded dev environment using PlatformIO

This commit is contained in:
2023-03-15 01:31:12 +01:00
parent d872172bc6
commit 30a5cd3ad7
4 changed files with 16 additions and 0 deletions

View File

@@ -138,3 +138,8 @@
(setq native-comp-deferred-compilation nil)
(after! (doom-packages straight)
(setq straight--native-comp-available t))
;; Use PlatformIO for Arduino development
(use-package! platformio-mode
:after cc-mode
:config
(add-hook! 'c++-mode-hook (platformio-conditionally-enable)))