mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Added lang/ocaml
This commit is contained in:
@ -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
|
||||
|
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)
|
Reference in New Issue
Block a user