Install the auto-highlight-symbol package

All good IDEs (like Notepad++. LoL) have it.
This commit is contained in:
Gergely Polonkai 2016-11-02 07:35:25 +01:00
parent a717e9ace1
commit 3cc7226461
2 changed files with 7 additions and 2 deletions

View File

@ -10,8 +10,7 @@
'(cursor-color "#5c5cff") '(cursor-color "#5c5cff")
'(cursor-type (quote bar)) '(cursor-type (quote bar))
'(custom-enabled-themes (quote (tango-dark))) '(custom-enabled-themes (quote (tango-dark)))
'(custom-file (concat user-emacs-directory '(custom-file (concat user-emacs-directory "customizations.el"))
"customizations.el"))
'(custom-safe-themes '(custom-safe-themes
(quote (quote
("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279" ("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279"
@ -35,6 +34,7 @@
achievements achievements
ag ag
alert alert
auto-highlight-symbol
avy avy
beacon beacon
bind-key bind-key

View File

@ -742,6 +742,11 @@
:config :config
(achievements-mode 1)) (achievements-mode 1))
(use-package auto-highlight-symbol
:ensure t
:config
(global-auto-highlight-symbol-mode t))
;; Load my own functions ;; Load my own functions
(load "gnu-c-header.el") (load "gnu-c-header.el")
(load "toggle-window-split.el") (load "toggle-window-split.el")