Calling this pivotal macro "def-package!" has frequently been a source of confusion. It is a thin wrapper around use-package, and it should be obvious that it is so. For this reason, and to match the naming convention used with other convenience macros/wrappers, it is now use-package!. Also changes def-package-hook! -> use-package-hook! The old macros are now marked obsolete and will be removed when straight integration is merged.
24 lines
766 B
EmacsLisp
24 lines
766 B
EmacsLisp
;;; ui/ophints/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! evil-goggles
|
|
:when (featurep! :editor evil)
|
|
:after-call pre-command-hook
|
|
:init
|
|
(setq evil-goggles-duration 0.1
|
|
evil-goggles-pulse nil ; too slow
|
|
;; 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
|
|
evil-goggles-enable-change nil)
|
|
:config
|
|
(evil-goggles-mode +1))
|
|
|
|
|
|
(use-package! volatile-highlights
|
|
:unless (featurep! :editor evil)
|
|
:after-call pre-command-hook
|
|
:config
|
|
(volatile-highlights-mode)
|
|
(after! undo-tree
|
|
(vhl/define-extension 'undo-tree 'undo-tree-yank 'undo-tree-move)
|
|
(vhl/install-extension 'undo-tree)))
|