Files
doomemacs/modules/lang/ocaml/packages.el
Puneeth Chaganti 046cfd816a feat(ocaml): switch to using opam-switch-mode
`tuareg-opam-update-env` has been deprecated, and the `opam-switch-mode`
package is recommended for managing opam switches. This commit adds this
package to the OCaml module
2024-06-21 17:55:11 -04:00

29 lines
1.1 KiB
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/ocaml/packages.el
(package! tuareg :pin "1d53723e39f22ab4ab76d31f2b188a2879305092")
(package! opam-switch-mode :pin "1069e56a662f23ea09d4e05611bdedeb99257012")
(unless (modulep! +lsp)
(package! merlin :pin "8404f96693727f7b0edc0d0b14db57843d79e27b")
(package! merlin-eldoc :pin "bf8edc63d85b35e4def352fa7ce4ea39f43e1fd8")
(package! merlin-company :pin "8404f96693727f7b0edc0d0b14db57843d79e27b")
(when (and (modulep! :checkers syntax)
(not (modulep! :checkers syntax +flymake)))
(package! flycheck-ocaml :pin "77f8ddbd9bfc3a11957ac7ec7e45d5fa9179b192")))
(package! ocp-indent :pin "f38578c25d62701847b1bcb45099a9020e2032fe")
(when (modulep! :tools eval)
(package! utop :pin "8cc563282597abdb8f5cca64df41166c5ebca6b5"))
(when (modulep! :editor format)
(package! ocamlformat
:recipe (:host github :repo "ocaml-ppx/ocamlformat" :files ("emacs/*.el"))
:pin "b8b09566904cf290cca294d3bf06a4f51793dfb7"))
(package! dune
:recipe (:host github :repo "ocaml/dune" :files ("editor-integration/emacs/*.el"))
:pin "64d19876ad6d2ca8b36d6158d5ac58c6eae8bc9a")