mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
[emacs] Add arduino-mode
This commit is contained in:
parent
ce64fcc554
commit
5a35b65651
2 changed files with 13 additions and 0 deletions
|
@ -1066,6 +1066,17 @@ Study kanji by overlaying hiragana readings.
|
||||||
:commands kanji-glasses-mode)
|
:commands kanji-glasses-mode)
|
||||||
#+end_src
|
#+end_src
|
||||||
* Coding
|
* 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
|
** Erlang
|
||||||
*** Kerl
|
*** Kerl
|
||||||
Select the active erlang installation managed with [[https://github.com/kerl/kerl][kerl]].
|
Select the active erlang installation managed with [[https://github.com/kerl/kerl][kerl]].
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
;; (package! another-package :recipe (:host github :repo "username/repo"))
|
;; (package! another-package :recipe (:host github :repo "username/repo"))
|
||||||
;; (package! builtin-package :disable t)
|
;; (package! builtin-package :disable t)
|
||||||
|
|
||||||
|
(package! arduino-mode)
|
||||||
|
(package! arduino-cli-mode)
|
||||||
(package! counsel)
|
(package! counsel)
|
||||||
(package! desktop-environment)
|
(package! desktop-environment)
|
||||||
(package! elcord)
|
(package! elcord)
|
||||||
|
|
Loading…
Reference in a new issue