17 lines
258 B
EmacsLisp
17 lines
258 B
EmacsLisp
;; -*- lexical-binding: t; -*-
|
|
|
|
|
|
(use-package tuareg
|
|
:ensure t
|
|
:mode (("\\.ocamlinit\\'" . tuareg-mode)))
|
|
|
|
|
|
(use-package ocaml-eglot
|
|
:ensure t
|
|
:after tuareg
|
|
:hook
|
|
(tuareg-mode . ocaml-eglot)
|
|
(ocaml-eglot . eglot-ensure))
|
|
|
|
(provide 'init-ocaml)
|