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

@ -88,6 +88,7 @@
latex ; writing papers in Emacs has never been so fun
lua ; one-based indices? one-based indices
markdown ; writing docs for people to ignore
ocaml ; an objective camel
org ; for organized fearless leader (WIP)
php ; make php less awful to work with
purescript ; javascript, but functional

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)
)

View file

@ -0,0 +1,5 @@
;; -*- no-byte-compile: t; -*-
;;; lang/ocaml/packages.el
(package! tuareg)
(package! merlin)