diff options
Diffstat (limited to 'lisp/init-indent-guides.el')
-rw-r--r-- | lisp/init-indent-guides.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/init-indent-guides.el b/lisp/init-indent-guides.el index 508fd65..221c7ca 100644 --- a/lisp/init-indent-guides.el +++ b/lisp/init-indent-guides.el @@ -1,8 +1,10 @@ ;; This minor mode highlights indentation levels via font-lock -(use-package highlight-indent-guides) -(setq highlight-indent-guides-method 'character) - -(add-hook 'prog-mode-hook 'highlight-indent-guides-mode) +(use-package highlight-indent-guides + :config + (setq highlight-indent-guides-method 'character) + ;; Indent character samples: fill, column or character + (setq highlight-indent-guides-method 'character) + (add-hook 'prog-mode-hook 'highlight-indent-guides-mode)) (provide 'init-indent-guides) |