-
Notifications
You must be signed in to change notification settings - Fork 0
UI : Beacon Mode
Milan Thapa edited this page Jul 30, 2017
·
2 revisions
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)
)