doomemacs/modules/lang/elm/config.el

15 lines
366 B
EmacsLisp
Raw Normal View History

;;; lang/elm/config.el -*- lexical-binding: t; -*-
2017-05-20 18:11:34 -07:00
(def-package! elm-mode
:mode "\\.elm$"
:config
2017-05-25 20:11:24 +02:00
(add-hook! 'elm-mode-hook #'(flycheck-mode rainbow-delimiters-mode))
2017-05-20 18:11:34 -07:00
(set! :company-backend 'elm-mode '(company-elm))
2017-05-25 20:11:24 +02:00
(setq elm-format-on-save t))
2017-05-20 18:11:34 -07:00
(def-package! flycheck-elm
:after (:all flycheck elm-mode)
:hook (flycheck-mode . flycheck-elm-setup))
2017-05-20 18:11:34 -07:00