doomemacs/modules/lang/ocaml/config.el

137 lines
4.2 KiB
EmacsLisp
Raw Normal View History

2017-06-27 22:58:38 +02:00
;;; lang/ocaml/config.el -*- lexical-binding: t; -*-
2017-06-27 11:39:15 -07:00
(after! projectile
(pushnew! projectile-project-root-files "dune-project"))
;;
;;; Packages
(when (modulep! +lsp)
(add-hook! '(tuareg-mode-local-vars-hook
reason-mode-local-vars-hook)
:append #'lsp!))
(after! tuareg
(set-formatter! 'ocamlformat
'("ocamlformat" "-" "--name" filepath "--enable-outside-detected-project"
(if (locate-dominating-file default-directory ".ocamlformat")
(pcase (apheleia-formatters-extension-p "eliom" "eliomi")
("eliom" '("--impl"))
("eliomi" '("--intf")))
'("--profile=ocamlformat"))))
;; tuareg-mode has the prettify symbols itself
(set-ligatures! 'tuareg-mode :alist
(append tuareg-prettify-symbols-basic-alist
tuareg-prettify-symbols-extra-alist))
;; harmless if `prettify-symbols-mode' isn't active
(setq tuareg-prettify-symbols-full t)
(setq-hook! 'tuareg-mode-hook
comment-line-break-function #'+ocaml/comment-indent-new-line)
(map! :localleader
:map tuareg-mode-map
"a" #'tuareg-find-alternate-file)
(use-package! utop
:when (modulep! :tools eval)
:hook (tuareg-mode-local-vars . +ocaml-init-utop-h)
:init
(set-repl-handler! 'tuareg-mode #'utop)
(set-eval-handler! 'tuareg-mode #'utop-eval-region)
(defun +ocaml-init-utop-h ()
(when (executable-find "utop")
2019-12-08 16:17:39 +07:00
(utop-minor-mode)))
:config
(set-popup-rule! "^\\*utop\\*" :quit nil)))
(use-package! merlin
:unless (modulep! +lsp)
:hook (tuareg-mode-local-vars . +ocaml-init-merlin-h)
:init
(defun +ocaml-init-merlin-h ()
"Activate `merlin-mode' if the ocamlmerlin executable exists."
(when (executable-find "ocamlmerlin")
(merlin-mode)))
(after! tuareg
(set-company-backend! 'tuareg-mode 'merlin-company-backend)
(set-lookup-handlers! 'tuareg-mode :async t
:definition #'merlin-locate
:references #'merlin-occurrences
:documentation #'merlin-document))
:config
(setq merlin-completion-with-doc t)
(map! :localleader
:map tuareg-mode-map
"t" #'merlin-type-enclosing)
(use-package! flycheck-ocaml
:when (and (modulep! :checkers syntax)
(not (modulep! :checkers syntax +flymake)))
:hook (merlin-mode . +ocaml-init-flycheck-h)
:config
(defun +ocaml-init-flycheck-h ()
"Activate `flycheck-ocaml`"
;; Disable Merlin's own error checking
(setq merlin-error-after-save nil)
;; Enable Flycheck checker
(flycheck-ocaml-setup)))
(use-package! merlin-eldoc
:hook (merlin-mode . merlin-eldoc-setup))
(use-package! merlin-iedit
:when (modulep! :editor multiple-cursors)
:defer t
:init
(map! :map tuareg-mode-map
:v "R" #'merlin-iedit-occurrences))
(use-package! merlin-imenu
:when (modulep! :emacs imenu)
:hook (merlin-mode . merlin-use-merlin-imenu)))
(use-package! ocp-indent
:hook (tuareg-mode-local-vars . ocp-setup-indent)
:hook (caml-mode-local-vars . ocp-indent-caml-mode-setup)
:init
(defadvice! +ocaml--init-ocp-indent-maybe-h (fn &rest args)
"Run `ocp-setup-indent' only if the ocp-indent binary is found."
:around #'ocp-setup-indent
(when (executable-find ocp-indent-path)
(apply fn args)))
:config
;; HACK: The package adds these hooks, but they're redundant (even
;; counter-productive) with the hooks I add above.
(remove-hook 'tuareg-mode-hook #'ocp-setup-indent)
(remove-hook 'caml-mode-hook #'ocp-indent-caml-mode-setup))
(use-package! opam-switch-mode
:hook (tuareg-mode-local-vars . opam-switch-mode)
:preface
(map! :after tuareg
:localleader
:map tuareg-mode-map
"w" #'opam-switch-set-switch)
:init
(defadvice! +ocaml--init-opam-switch-mode-maybe-h (fn &rest args)
"Activate `opam-switch-mode' if the opam executable exists."
:around #'opam-switch-mode
(when (executable-find opam-switch-program-name)
(apply fn args)))
:config
;; Use opam to set environment
(setq tuareg-opam-insinuate t)
(opam-switch-set-switch (tuareg-opam-current-compiler)))
(eval-when! (modulep! +tree-sitter)
(add-hook 'tuareg-mode-local-vars-hook #'tree-sitter!))