aboutsummaryrefslogtreecommitdiff
path: root/doom.d/modules/private/ocaml/config.el
blob: df138ad5f10b0d24ac59d0f35fa47d8a7c2b501f (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 #'lsp!)))