aboutsummaryrefslogtreecommitdiff
path: root/doom.d/modules/private/ocaml/config.el
blob: b3481974eb087fbac7d43cf3a910775e4cc6be7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; private/ocaml/config.el -*- lexical-binding: t; -*-

(use-package! utop
  :config
  (map!
   :localleader
   :map tuareg-mode-map
   :desc "Repl" "c" #'utop
   (:prefix ("e" . "eval")
     :desc "Buffer" "b" #'utop-eval-buffer
     :desc "Region" "r" #'utop-eval-region)))


(when (featurep! +lsp)
  (after! lsp
    (lsp-register-client
     (make-lsp-client :new-connection (lsp-stdio-connection "ocamllsp")
                      :major-modes '(tuareg-mode)
                      :server-id 'ocaml-lsp))
    (add-hook 'tuareg-mode-hook #'(lambda () (lsp-mode)))))