From ced0fe8f9ef7cd16ade900bb34393c627f6d0c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 22 Jan 2019 15:45:41 -0500 Subject: Change directory lisp/ to modules/ FS #2 --- modules/init-indent-guides.el | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/init-indent-guides.el (limited to 'modules/init-indent-guides.el') 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 -- cgit v1.2.3