From 3cc7226461ddf26ff54d35e540a51c7fcdacb74c Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 2 Nov 2016 07:35:25 +0100 Subject: [PATCH] Install the auto-highlight-symbol package All good IDEs (like Notepad++. LoL) have it. --- customizations.el | 4 ++-- init.el | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/customizations.el b/customizations.el index b82a753..e6c4cab 100644 --- a/customizations.el +++ b/customizations.el @@ -10,8 +10,7 @@ '(cursor-color "#5c5cff") '(cursor-type (quote bar)) '(custom-enabled-themes (quote (tango-dark))) - '(custom-file (concat user-emacs-directory - "customizations.el")) + '(custom-file (concat user-emacs-directory "customizations.el")) '(custom-safe-themes (quote ("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279" @@ -35,6 +34,7 @@ achievements ag alert + auto-highlight-symbol avy beacon bind-key diff --git a/init.el b/init.el index aeeda46..b16ce7a 100644 --- a/init.el +++ b/init.el @@ -742,6 +742,11 @@ :config (achievements-mode 1)) +(use-package auto-highlight-symbol + :ensure t + :config + (global-auto-highlight-symbol-mode t)) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")