diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-11-01 16:47:02 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-11-01 16:47:02 +0000 |
commit | c79ae695e8ed1d2bc6f18092fc0fc0ae758649b2 (patch) | |
tree | cd3f6f2dc8dd646d6b97a077145d635c8aa4903c /.emacs.d | |
parent | 8320b9022e369229a9c11b306c822221210ac18c (diff) | |
download | dotfiles-c79ae695e8ed1d2bc6f18092fc0fc0ae758649b2.tar.gz |
Remove pulsar
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-ui.el | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el index 8f88a90..288c94e 100644 --- a/.emacs.d/lisp/init-ui.el +++ b/.emacs.d/lisp/init-ui.el @@ -184,26 +184,15 @@ (dolist (cmd '(previous-buffer next-buffer)) (put cmd 'repeat-map 'buffer-repeat-map))) -(use-package pulsar +(use-package beacon :defer 5 + :diminish :custom - (pulsar-pulse t) - (pulsar-iterations 80) - (pulsar-face 'pulsar-yellow) - :hook - (isearch-update-post-hook . pulsar-pulse-line) - (consult-after-jump-hook . pulsar-pulse-line) - :bind ("C-c c p" . pulsar-pulse-line)) - -(use-package beacon - :defer 5 - :diminish - :custom - (beacon-color "yellow") - (beacon-push-mark 20) - :bind ("C-c c b" . beacon-blink) - :config - (beacon-mode 1)) + (beacon-color "yellow") + (beacon-push-mark 20) + :bind ("C-c c b" . beacon-blink) + :config + (beacon-mode 1)) (use-package helpful :bind (("C-h f" . helpful-callable) |