Files
.emacs.d/lisp/init-ocaml.el
Zelong Kuang 0d833adbfe Ocaml
2025-12-17 03:55:28 +11:00

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)