diff options
-rw-r--r-- | modules/init-indent-guides.el | 5 |
1 files 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) |