mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
tweak(indent-guides): default to bitmap in GUI
This commit is contained in:
@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
(use-package! highlight-indent-guides
|
(use-package! highlight-indent-guides
|
||||||
:hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)
|
:hook ((prog-mode text-mode conf-mode) . highlight-indent-guides-mode)
|
||||||
:init (setq highlight-indent-guides-method 'character)
|
:init
|
||||||
|
(setq highlight-indent-guides-method (if (display-graphic-p) 'bitmap 'character)
|
||||||
|
highlight-indent-guides-bitmap-function #'highlight-indent-guides--bitmap-line)
|
||||||
:config
|
:config
|
||||||
;; HACK: If this package is loaded too early (by the user, and in terminal
|
;; HACK: If this package is loaded too early (by the user, and in terminal
|
||||||
;; Emacs), then `highlight-indent-guides-auto-set-faces' will have been
|
;; Emacs), then `highlight-indent-guides-auto-set-faces' will have been
|
||||||
|
Reference in New Issue
Block a user