mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Instead of directly using the my current favorite indentation highlighting package in various places, only use the siren-display-indentation function. This lets me control it from a single central place.
16 lines
415 B
EmacsLisp
16 lines
415 B
EmacsLisp
;;; siren-highlight-indentation.el --- jimeh's Emacs Siren: highlight-indentation-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for highlight-indentation-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package highlight-indentation
|
|
:defer t
|
|
:diminish (highlight-indentation-mode
|
|
highlight-indentation-current-column-mode))
|
|
|
|
(provide 'siren-highlight-indentation)
|
|
;;; siren-highlight-indentation.el ends here
|