spacemacs/init-package/init-auto-highlight-symbol.el
syl20bnr b4918f0bfc Use official distribution of EDTS from marmalade
It also fixes the conflict with auto-highlight-symbol, oh yeah :-)
2014-09-01 00:24:12 -04:00

16 lines
431 B
EmacsLisp

(use-package auto-highlight-symbol
:commands auto-highlight-symbol-mode
:init
(add-to-hooks
'auto-highlight-symbol-mode '(prog-mode-hook
erlang-mode-hook
org-mode-hook
))
:config
(custom-set-variables
'(ahs-case-fold-search nil)
'(ahs-default-range (quote ahs-range-whole-buffer))
'(ahs-idle-interval 0.5)))