Files
.emacs.d/lisp/init-ocaml.el

17 lines
258 B
EmacsLisp
Raw Normal View History

2025-12-17 03:55:28 +11:00
;; -*- 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)