aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-indent-guides.el
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-01-22 15:45:41 -0500
committerJesús <heckyel@hyperbola.info>2019-01-22 15:45:41 -0500
commitced0fe8f9ef7cd16ade900bb34393c627f6d0c69 (patch)
tree350d3a0cbb87b12a36c0dc12537c56a75a2668ae /modules/init-indent-guides.el
parentd0f44d85466d7211d54e30970f29815842ff4180 (diff)
downloademacs-personal-ced0fe8f9ef7cd16ade900bb34393c627f6d0c69.tar.lz
emacs-personal-ced0fe8f9ef7cd16ade900bb34393c627f6d0c69.tar.xz
emacs-personal-ced0fe8f9ef7cd16ade900bb34393c627f6d0c69.zip
Change directory lisp/ to modules/
FS #2
Diffstat (limited to 'modules/init-indent-guides.el')
-rw-r--r--modules/init-indent-guides.el18
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