Because it is using the neotree-make-executor macro without requiring `neotree` at compile time. Also, remove the helm fix because they no longer use the `with-helm-buffer` macro.
31 lines
785 B
EmacsLisp
31 lines
785 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; feature/evil/packages.el
|
|
|
|
(package! evil)
|
|
(package! evil-args)
|
|
(package! evil-commentary)
|
|
(package! evil-easymotion)
|
|
(package! evil-embrace)
|
|
(package! evil-escape)
|
|
(package! evil-exchange)
|
|
(package! evil-indent-plus)
|
|
(package! evil-matchit)
|
|
(package! evil-mc)
|
|
(package! evil-multiedit)
|
|
(package! evil-numbers)
|
|
(package! evil-textobj-anyblock)
|
|
(package! evil-snipe)
|
|
(package! evil-surround)
|
|
(package! evil-vimish-fold)
|
|
(package! evil-visualstar)
|
|
(package! exato)
|
|
|
|
|
|
;;
|
|
(when (featurep! +everywhere)
|
|
;; `evil-collection-neotree' uses the `neotree-make-executor' macro, but this
|
|
;; requires neotree be available during byte-compilation (while installing).
|
|
(when (featurep! :ui neotree)
|
|
(depends-on! :ui neotree))
|
|
|
|
(package! evil-collection))
|