2017-06-08 11:47:56 +02:00
|
|
|
;;; ui/evil-goggles/config.el -*- lexical-binding: t; -*-
|
2017-06-04 13:27:19 -04:00
|
|
|
|
2017-06-07 03:57:21 +02:00
|
|
|
(def-package! evil-goggles
|
|
|
|
:when (featurep! :feature evil)
|
2018-05-25 00:46:11 +02:00
|
|
|
:after-call pre-command-hook
|
2017-06-07 03:57:21 +02:00
|
|
|
:init
|
2018-02-19 20:26:29 -05:00
|
|
|
(setq evil-goggles-duration 0.05
|
|
|
|
evil-goggles-pulse nil ; too slow
|
2018-05-25 00:56:34 +02:00
|
|
|
;; evil-goggles provides a good indicator of what has been affected.
|
|
|
|
;; delete/change is obvious, so I'd rather disable it for these.
|
|
|
|
evil-goggles-enable-delete nil
|
2018-05-15 02:29:04 +02:00
|
|
|
evil-goggles-enable-change nil)
|
|
|
|
:config
|
|
|
|
(evil-goggles-mode +1))
|