From 0fbb9f4e96583667f5905f4314a75ab99559fb80 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sun, 2 Sep 2018 14:43:26 -0400 Subject: [emacs] assimilate highlight-indent-guides --- init.org | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'init.org') diff --git a/init.org b/init.org index 2173871..206b6be 100644 --- a/init.org +++ b/init.org @@ -1371,6 +1371,22 @@ Make =*scratch*= and =*Messages*= unkillable. Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. +** [[https://github.com/DarthFennec/highlight-indent-guides][highlight-indent-guides]] + +#+begin_src emacs-lisp +(use-package highlight-indent-guides + :demand t + :hook ((prog-mode . highlight-indent-guides-mode) + (org-mode . highlight-indent-guides-mode)) + :config + (setq highlight-indent-guides-character ?\|) + (setq highlight-indent-guides-auto-enabled nil) + (setq highlight-indent-guides-method 'character) + (setq highlight-indent-guides-responsive 'top) + (set-face-foreground 'highlight-indent-guides-character-face "gainsboro") + (set-face-foreground 'highlight-indent-guides-top-character-face "grey40")) ; grey13 is nice too +#+end_src + * Email ** [[https://notmuchmail.org][notmuch]] -- cgit v1.2.3-83-g751a