mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- 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.
20 lines
462 B
EmacsLisp
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
|