doomemacs/modules/feature/evil/packages.el

30 lines
796 B
EmacsLisp
Raw Normal View History

2017-02-04 08:43:25 +08:00
;; -*- no-byte-compile: t; -*-
;;; feature/evil/packages.el
2017-02-01 08:50:02 +08:00
;; `evil-collection' uses the `with-helm-buffer' macro, but this requires helm
;; be loaded before it is byte-compiled during installation. To ensure this, we
;; declare helm before evil-collection.
(when (featurep! :completion helm)
(depends-on! :completion helm))
;;
(package! evil)
(package! evil-args)
(package! evil-commentary)
(package! evil-collection)
(package! evil-easymotion)
(package! evil-embrace)
(package! evil-escape)
(package! evil-exchange)
(package! evil-indent-plus)
(package! evil-matchit)
2017-05-07 23:08:22 +08:00
(package! evil-mc)
(package! evil-multiedit)
(package! evil-numbers)
(package! evil-textobj-anyblock)
(package! evil-snipe)
(package! evil-surround)
2017-05-16 02:20:06 +08:00
(package! evil-vimish-fold)
(package! evil-visualstar)
(package! exato)