Files
.emacs.d/modules/siren-highlight-symbol.el
Jim Myhrberg a32cf8b132 Big refactor of modules and their use of use-package
- Make use of use-package's :bind option whenever possible.
- Make use of use-package's :hook option whenever possible.
- Rename and move all mode setup functions into use-package's :init
  step.
- Other minor misc fixes and tweaks to a few modules.
2018-04-20 10:29:45 +01:00

20 lines
462 B
EmacsLisp

;;; siren-highlight-symbol.el --- jimeh's Emacs Siren: highlight-symbol configuration.
;;; Commentary:
;; Basic configuration for highlight-symbol.
;;; Code:
(use-package highlight-symbol
:bind
("C-c C-p" . highlight-symbol-prev)
("C-c C-n" . highlight-symbol-next)
:config
(setq highlight-symbol-highlight-single-occurrence 'nil
highlight-symbol-idle-delay 0.5))
(provide 'siren-highlight-symbol)
;;; siren-highlight-symbol.el ends here