From 338cebea4bdc6ccf595c71d715b826ca036b4863 Mon Sep 17 00:00:00 2001 From: Jesus E Date: Sat, 13 May 2023 01:20:11 -0400 Subject: [PATCH] Fix highlight indent guides --- modules/init-indent-guides.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/init-indent-guides.el b/modules/init-indent-guides.el index ced3ad0..660b64a 100644 --- a/modules/init-indent-guides.el +++ b/modules/init-indent-guides.el @@ -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)