Add ReasonML
This commit is contained in:
parent
810d175372
commit
d2e4c202b0
11 changed files with 66 additions and 42 deletions
15
languages/elm.el
Normal file
15
languages/elm.el
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
(use-package elm-mode
|
||||
:ensure t
|
||||
:defer t)
|
||||
|
||||
(defun activate-elm-mode ()
|
||||
"All things Elixir."
|
||||
(set-indent 2)
|
||||
(column-enforce-n 80)
|
||||
|
||||
;; Company list override
|
||||
(add-to-list (make-local-variable 'company-backends)
|
||||
'(elm-company company-yasnippet))
|
||||
(define-key elm-mode-map (kbd "TAB") 'elm-indent-cycle))
|
||||
|
||||
(add-hook 'elm-mode-hook 'activate-elm-mode)
|
||||
Loading…
Add table
Add a link
Reference in a new issue