mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
+ Load flyspell-mode a little later, to allow file/dir-local variables to customize flyspell. + Ensure setters (in merlin's config) are used as late as possible, by making merlin's (and all the other packages) config run after tuareg is loaded. + As discussed, installing packages locally is a bit unreliable, so I'm commenting out the +ocaml-site-lisp flag, and rely solely on packages from MELPA. + Add optional ocamlformat check in doctor.el and conditionally load the ocamlformat package (if editor/format is enabled). + Add docstrings to init hooks.
23 lines
788 B
EmacsLisp
23 lines
788 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; lang/ocaml/doctor.el
|
|
|
|
(unless (executable-find "ocamlmerlin")
|
|
(warn! "Couldn't find ocamlmerlin. Lookup, completion and syntax checking won't work"))
|
|
|
|
;; Tuareg can still indent
|
|
(unless (executable-find "ocp-indent")
|
|
(warn! "Couldn't find ocp-indent. Auto-indentation will be less precise"))
|
|
|
|
(when (featurep! :feature eval)
|
|
(unless (executable-find "utop")
|
|
(warn! "Couldn't find utop. REPL won't be available")))
|
|
|
|
(unless (executable-find "dune")
|
|
(warn! "Couldn't find dune. Won't be able to highlight dune files"))
|
|
|
|
(when (featurep! :editor format)
|
|
(unless (executable-find "ocamlformat")
|
|
(warn! "Couldn't find ocamlformat. Code-formatting will be unavailable")))
|
|
|
|
;; ocamlformat is optional, don't warn about it
|