There are a few kinks to iron out, but for the most part it's done. Doom Emacs, powered by straight. Goodbye gnutls and elpa/quelpa issues. This update doesn't come with rollback or lockfile support yet, but I will eventually include one with Doom, and packages will be (by default, anyway) updated in sync with Doom. Relevant threads: #1577 #1566 #1473
23 lines
693 B
EmacsLisp
23 lines
693 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/ocaml/packages.el
|
|
|
|
(package! tuareg)
|
|
(package! merlin)
|
|
(package! merlin-eldoc)
|
|
(package! ocp-indent)
|
|
|
|
(when (featurep! :tools flycheck)
|
|
(package! flycheck-ocaml))
|
|
|
|
(when (featurep! :tools eval)
|
|
(package! utop))
|
|
|
|
(when (featurep! :editor format)
|
|
;; by default quelpa generated a version 0pre0.20180929.192844, which got
|
|
;; parsed into (0 -1 0 ...), which when compared with version nil (0) in
|
|
;; package-installed-p always yielded false
|
|
(package! ocamlformat :recipe
|
|
(:host github :repo "ocaml-ppx/ocamlformat" :files ("emacs/*.el"))))
|
|
|
|
(package! dune :recipe
|
|
(:host github :repo "ocaml/dune" :files ("editor-integration/emacs/*.el")))
|