And rebind its keys from C-a/C-S-a to g= and g-. This is because the old narrow/widen commands aren't nearly as useful (and have a number of alternative keybinds). As much as I'd like to us C-a/C-x (as it is in Vim), C-x is an essential keybind for Emacs. Also, in visual mode, each number will be affected incrementally (ala g C-a and g C-x in vim).
29 lines
822 B
EmacsLisp
29 lines
822 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; editor/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-numbers :recipe (:fetcher github :repo "janpath/evil-numbers"))
|
|
(package! evil-textobj-anyblock)
|
|
(package! evil-snipe)
|
|
(package! evil-surround)
|
|
(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)
|
|
(package! neotree)
|
|
(autoload 'neotree-make-executor "neotree" nil nil 'macro))
|
|
|
|
(package! evil-collection))
|