1
0
Fork 0
dotfiles/.emacs.d/include/ocamlconfig.el
Lucas Sta Maria 858ecd3818
feat(emacs): add ocaml and rust configs
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2023-12-29 04:57:30 -05:00

9 lines
284 B
EmacsLisp

;;; ocamlconfig.el --- Configuration for OCaml and Tuareg
;;; Commentary:
;;; Code:
(add-hook 'tuareg-mode-hook #'flycheck-ocaml-setup)
(add-hook 'tuareg-mode-hook #'(lambda () (merlin-mode -1)))
(setq utop-command "opam exec -- dune utop . -- -emacs")
;;; ocamlconfig.el ends here