Files
.emacs.d/modules/editor/siren-highlight-indent-guides.el
Jim Myhrberg 1a55833d09 fix(editor/indent-guides): switch back to column display due to performance
Yet again, I'm switching highlight-indent-guides back to column mode. It
seemed that character mode performance had been improved. But I've run
into a number of files since where it tanks performance to the point key
strokes takes close to a second to render.
2023-02-07 19:04:22 +00: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