From 142555a58a55d03963507f7bd127dd10dc905ec6 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Thu, 11 Feb 2016 21:56:29 -0500 Subject: [PATCH] Add Elm support --- .emacs.d/emacs.org | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.emacs.d/emacs.org b/.emacs.d/emacs.org index 5602a91..65dc312 100644 --- a/.emacs.d/emacs.org +++ b/.emacs.d/emacs.org @@ -241,6 +241,20 @@ A strongly typed, pure functional language. :commands turn-on-hi2 :init (add-hook 'haskell-mode-hook 'turn-on-hi2)) #+END_SRC +*** Elm +A functional, reactive language for the web that compiles to +JavaScript. + +#+name: programming +#+BEGIN_SRC emacs-lisp + (use-package elm-mode + :ensure t + :mode "\.elm$" + :config + (add-hook 'elm-mode-hook #'elm-oracle-setup-completion) + (add-to-list 'company-backends 'company-elm)) + +#+END_SRC *** Web **** HTML #+name: programming