From 68fac1a07ae103151f8b8be9b888e13967c6cd7e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 28 Aug 2016 22:08:48 +0200 Subject: [PATCH] Plugin: add beacon --- Cask | 1 + core/core-ui.el | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/Cask b/Cask index eafb63bf4..9c5deba2f 100644 --- a/Cask +++ b/Cask @@ -32,6 +32,7 @@ (depends-on "shackle") ;; UI --- core/core-ui.el +(depends-on "beacon") (depends-on "highlight-indentation" :git "https://github.com/localredhead/Highlight-Indentation-for-Emacs") (depends-on "highlight-numbers") (depends-on "nlinum") diff --git a/core/core-ui.el b/core/core-ui.el index b6dab47ec..1646c152f 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -94,6 +94,13 @@ ;; Plugins ;; +(use-package beacon + :config + (beacon-mode +1) + (setq beacon-color (face-attribute 'highlight :background nil t) + beacon-blink-when-buffer-changes t + beacon-blink-when-point-moves-vertically 10)) + (use-package hl-line :init (add-hook! prog-mode 'hl-line-mode) :config