From e0a926dc1ec9e1fa66f31751d33b3e4f41b6801a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 6 Sep 2024 16:15:57 -0400 Subject: [PATCH] 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 --- modules/ui/indent-guides/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/indent-guides/config.el b/modules/ui/indent-guides/config.el index 58b43ea16..9312f0ad7 100644 --- a/modules/ui/indent-guides/config.el +++ b/modules/ui/indent-guides/config.el @@ -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 ()