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.
25 lines
767 B
EmacsLisp
25 lines
767 B
EmacsLisp
;;; siren-highlight-indent-guides.el --- jimeh's Emacs Siren: highlight-indent-guides-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for highlight-indent-guides-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package highlight-indent-guides
|
|
:defer t
|
|
:commands highlight-indent-guides-mode
|
|
:diminish highlight-indent-guides-mode
|
|
|
|
:custom
|
|
(highlight-indent-guides-auto-even-face-perc 3)
|
|
(highlight-indent-guides-auto-odd-face-perc 2.5)
|
|
(highlight-indent-guides-auto-top-even-face-perc 12)
|
|
(highlight-indent-guides-auto-top-odd-face-perc 10)
|
|
(highlight-indent-guides-character ?\u2502)
|
|
(highlight-indent-guides-method 'column)
|
|
(highlight-indent-guides-responsive 'top))
|
|
|
|
(provide 'siren-highlight-indent-guides)
|
|
;;; siren-highlight-indent-guides.el ends here
|