Skip to content

UI : Beacon Mode

Milan Thapa edited this page Jul 30, 2017 · 2 revisions

Beacon mode

beacon — Never lose your cursor again

Featuring from rho, whose beacon config looks like:

(el-get 'sync 'beacon)
(require 'beacon)
(beacon-mode t)
(setq beacon-blink-delay '0.2)
(setq beacon-blink-when-focused 't)
(setq beacon-dont-blink-commands 'nil)
(setq beacon-push-mark '1)

just copy paste is enough if you use el-get.

& For folks who prefer use-package:

(use-package beacon
  :ensure t
  :config
  (beacon-mode 1)
  )
Clone this wiki locally