Description
I believe this is a newer error.
⛔ Error (use-package): Cannot load clean-aindent-mode
⛔ Error (use-package): Cannot load column-enforce-mode
⛔ Warning (evil-collection): `evil-want-keybinding' was set to nil but not before loading evil.
Make sure to set `evil-want-keybinding' to nil before loading evil or evil-collection.
See emacs-evil/evil-collection#60 for more details.
⛔ Error (use-package): evil-easymotion/:init: Symbol’s function definition is void: evilem-default-keybindings
⛔ Error (use-package): eyebrowse/:init: Symbol’s function definition is void: eyebrowse-mode
⛔ Error (use-package): Cannot load eyebrowse
⛔ Error (use-package): vi-tilde-fringe/:init: Symbol’s function definition is void: global-vi-tilde-fringe-mode
⛔ Error (use-package): Cannot load vi-tilde-fringe
⛔ Error (use-package): volatile-highlights/:init: Symbol’s function definition is void: volatile-highlights-mode
⛔ Error (use-package): Failed to install flycheck-ocaml: Cannot open load file: No such file or directory, flycheck-elsa
require 'package)
(add-to-list 'package-archives
'("MELPA Stable" . "https://stable.melpa.org/packages/") t)
(package-initialize)
(with-eval-after-load 'merlin
;; Disable Merlin's own error checking
(setq merlin-error-after-save nil)
;; Enable Flycheck checker
(flycheck-ocaml-setup))
(add-hook 'tuareg-mode-hook #'merlin-mode)
;; or this if you're into use-package
(use-package flycheck-ocaml
:ensure t
:config
(add-hook 'tuareg-mode-hook
(lambda ()
;; disable Merlin's own error checking
(setq-local merlin-error-after-save nil)
;; enable Flycheck checker
(flycheck-ocaml-setup))))`