diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-10-06 16:33:12 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-10-06 16:33:12 +0100 |
commit | 732d65be392e493788d4459e1e2a159c6217fa3b (patch) | |
tree | 4b2a356c1a39659b348413eef7bd00b26ac0f1c3 | |
parent | ebebb8b8313475fe6484bfb3b7d87739010bd156 (diff) | |
download | dotfiles-732d65be392e493788d4459e1e2a159c6217fa3b.tar.gz |
Try out beacon
-rw-r--r-- | .emacs.d/lisp/init-ui.el | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el index 0690bd0..a596a9d 100644 --- a/.emacs.d/lisp/init-ui.el +++ b/.emacs.d/lisp/init-ui.el @@ -184,13 +184,22 @@ :custom (pulsar-pulse t) (pulsar-iterations 80) - (pulsar-face 'pulsar-red) + (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) - :config - (pulsar-global-mode 1)) + :bind ("C-c c p" . pulsar-pulse-line)) + +(use-package beacon + :defer 5 + :diminish + :custom + (beacon-blink-duration 0.5) + (beacon-blink-delay 0.4) + (beacon-color "yellow") + :bind ("C-c c b" . beacon-blink) + :config + (beacon-mode 1)) (provide 'init-ui) ;;; init-ui.el ends here |