spacemacs/contrib/evil-snipe/packages.el

23 lines
826 B
EmacsLisp

(defvar evil-snipe-packages '(evil-snipe)
"List of all packages to install and/or initialize. Built-in packages
which require an initialization must be listed explicitly in the list.")
(defvar evil-snipe-excluded-packages '()
"List of packages to exclude.")
(defun evil-snipe/init-evil-snipe ()
(use-package evil-snipe
:diminish evil-snipe-mode
:init
(progn
(setq evil-snipe-scope 'whole-buffer
evil-snipe-enable-highlight t
evil-snipe-enable-incremental-highlight t
evil-snipe-enable-half-cursor nil
evil-snipe-show-prompt nil
evil-snipe-smart-case t)
(when evil-snipe-enable-alternate-f-and-t-behaviors
(setq evil-snipe-repeat-scope 'whole-buffer
evil-snipe-override-evil t))
(global-evil-snipe-mode))))