[emacs] Add arduino-mode

This commit is contained in:
Correl Roush 2023-02-05 17:41:44 -05:00
parent ce64fcc554
commit 5a35b65651
2 changed files with 13 additions and 0 deletions

View file

@ -1066,6 +1066,17 @@ Study kanji by overlaying hiragana readings.
:commands kanji-glasses-mode)
#+end_src
* Coding
** Arduino
#+begin_src emacs-lisp
(use-package! arduino-mode
:mode "\\.ino\\'")
(use-package! arduino-cli-mode
:hook arduino-mode
:custom
(arduino-cli-warnings 'all)
(arduino-cli-verify t))
#+end_src
** Erlang
*** Kerl
Select the active erlang installation managed with [[https://github.com/kerl/kerl][kerl]].

View file

@ -6,6 +6,8 @@
;; (package! another-package :recipe (:host github :repo "username/repo"))
;; (package! builtin-package :disable t)
(package! arduino-mode)
(package! arduino-cli-mode)
(package! counsel)
(package! desktop-environment)
(package! elcord)