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:
parent
79684ade71
commit
e0a926dc1e
1 changed files with 1 additions and 1 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue