Fix highlight indent guides

This commit is contained in:
Jesus E 2023-05-13 01:20:11 -04:00
parent 2a76be1a87
commit 338cebea4b
No known key found for this signature in database
GPG Key ID: 159C8F8BC9AED8B6

View File

@ -7,10 +7,11 @@
;; This minor mode highlights indentation levels via font-lock
(use-package highlight-indent-guides
:ensure t
:config
(setq highlight-indent-guides-method 'character)
;; Indent character samples: fill, column or character
(setq highlight-indent-guides-method 'character))
:hook
(prog-mode . highlight-indent-guides-mode))
(provide 'init-indent-guides)