mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
tweak(indent-guides): default to character method
The bitmap method is slower and not that different, visually, from the character method. Fix: #8052 Co-authored-by: nightkr <nightkr@users.noreply.github.com>
This commit is contained in:
@ -16,7 +16,7 @@ non-nil, the mode will not be activated."
|
||||
(use-package! highlight-indent-guides
|
||||
:hook ((prog-mode text-mode conf-mode) . +indent-guides-init-maybe-h)
|
||||
:init
|
||||
(setq highlight-indent-guides-method (if (display-graphic-p) 'bitmap 'character)
|
||||
(setq highlight-indent-guides-method 'character
|
||||
highlight-indent-guides-bitmap-function #'highlight-indent-guides--bitmap-line)
|
||||
|
||||
(defun +indent-guides-init-maybe-h ()
|
||||
|
Reference in New Issue
Block a user