Added lang/ocaml

This commit is contained in:
Valentin Robert 2017-06-27 11:39:15 -07:00
parent 12025511a1
commit f7ce419265
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,14 @@
;;; lang/ocaml/config.el
(def-package! tuareg
:mode (("\\.ml$" . tuareg-mode)
("\\.mll$" . tuareg-mode)
("\\.mly$" . tuareg-mode))
:config
)
(def-package! merlin
:after tuareg
:config
(add-hook! 'tuareg-mode-hook #'merlin-mode)
)