mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
For now, it seems that this no longer causes performance issues compared to the column style. Time will tell if this stays true.
22 lines
604 B
EmacsLisp
22 lines
604 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-enabled nil)
|
|
(highlight-indent-guides-character ?\u2502)
|
|
(highlight-indent-guides-method 'character)
|
|
(highlight-indent-guides-responsive nil))
|
|
|
|
(provide 'siren-highlight-indent-guides)
|
|
;;; siren-highlight-indent-guides.el ends here
|