diff options
author | Jesus E <heckyel@riseup.net> | 2023-05-13 01:20:11 -0400 |
---|---|---|
committer | Jesus E <heckyel@riseup.net> | 2023-05-13 01:20:11 -0400 |
commit | 338cebea4bdc6ccf595c71d715b826ca036b4863 (patch) | |
tree | 924b6afb1359d1d5570e09e961a76d2e88f2403a | |
parent | 2a76be1a87317b64769ec724c0fa2162b11ff1f0 (diff) | |
download | emacs-personal-338cebea4bdc6ccf595c71d715b826ca036b4863.tar.lz emacs-personal-338cebea4bdc6ccf595c71d715b826ca036b4863.tar.xz emacs-personal-338cebea4bdc6ccf595c71d715b826ca036b4863.zip |
Fix highlight indent guides
-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) |