about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-11-02 16:47:03 +0000
committerDavid Morgan <djm_uk@protonmail.com>2022-11-02 16:47:03 +0000
commitc2aa65c9bf8c1e871f85cecff1a7a94bb2187315 (patch)
treeebca5317d8cc492012338eb4bf18c5e36d895eff /.emacs.d
parent4e58964ca67e7fa2a560af9c1dae4644e2a401ee (diff)
downloaddotfiles-c2aa65c9bf8c1e871f85cecff1a7a94bb2187315.tar.gz
Tweak beacon config
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-ui.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el
index b42a927..1c43a49 100644
--- a/.emacs.d/lisp/init-ui.el
+++ b/.emacs.d/lisp/init-ui.el
@@ -184,14 +184,20 @@
   (dolist (cmd '(previous-buffer next-buffer))
     (put cmd 'repeat-map 'buffer-repeat-map)))
 
+
 (use-package beacon
   :defer 5
   :diminish
   :custom
   (beacon-color "yellow")
   (beacon-push-mark 20)
+  (beacon-blink-duration 0.4)
+  (beacon-size 45)
+  ;; (beacon-blink-when-point-moves-vertically t) ;; TODO why does this cause errors?
+  (beacon-blink-when-focused t)
   :bind ("C-c c b" . beacon-blink)
   :config
+  (add-to-list 'beacon-dont-blink-major-modes 'cider-repl-mode t)
   (beacon-mode 1))
 
 (use-package helpful