Files
.emacs.d/modules/editor/siren-highlight-indent-guides.el
Jim Myhrberg 2fa38381ee fix(editor): change highlight indentation guides back to 'column mode
It turns out that using the 'character mode causes very noticeable
performance degradation and straight up lag when typing in a lot of
programming languages. Setting it back to 'column seems to resolved this
for me.
2022-07-13 18:49:42 +01:00

22 lines
601 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 'column)
(highlight-indent-guides-responsive nil))
(provide 'siren-highlight-indent-guides)
;;; siren-highlight-indent-guides.el ends here