diff options
Diffstat (limited to 'modules/init-indent-guides.el')
-rw-r--r-- | modules/init-indent-guides.el | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/init-indent-guides.el b/modules/init-indent-guides.el new file mode 100644 index 0000000..ced3ad0 --- /dev/null +++ b/modules/init-indent-guides.el @@ -0,0 +1,18 @@ +;;; init-indent-guides.el --- .Emacs Configuration -*- lexical-binding: t -*- +;;; Commentary: +;; + +;;; Code: + +;; This minor mode highlights indentation levels via font-lock + +(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)) + +(provide 'init-indent-guides) + +;; End: +;;; init-indent-guides.el ends here |