Added lang/ocaml
This commit is contained in:
parent
12025511a1
commit
f7ce419265
3 changed files with 20 additions and 0 deletions
|
@ -88,6 +88,7 @@
|
||||||
latex ; writing papers in Emacs has never been so fun
|
latex ; writing papers in Emacs has never been so fun
|
||||||
lua ; one-based indices? one-based indices
|
lua ; one-based indices? one-based indices
|
||||||
markdown ; writing docs for people to ignore
|
markdown ; writing docs for people to ignore
|
||||||
|
ocaml ; an objective camel
|
||||||
org ; for organized fearless leader (WIP)
|
org ; for organized fearless leader (WIP)
|
||||||
php ; make php less awful to work with
|
php ; make php less awful to work with
|
||||||
purescript ; javascript, but functional
|
purescript ; javascript, but functional
|
||||||
|
|
14
modules/lang/ocaml/config.el
Normal file
14
modules/lang/ocaml/config.el
Normal 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)
|
||||||
|
)
|
5
modules/lang/ocaml/packages.el
Normal file
5
modules/lang/ocaml/packages.el
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
;; -*- no-byte-compile: t; -*-
|
||||||
|
;;; lang/ocaml/packages.el
|
||||||
|
|
||||||
|
(package! tuareg)
|
||||||
|
(package! merlin)
|
Loading…
Add table
Add a link
Reference in a new issue