From 79af45c4002e55292ce810134a686ce18ee95447 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 28 Dec 2016 19:41:43 -0800 Subject: [PATCH] [Emacs] Add highlight-indent-guides mode --- dotfiles/emacs.d/README.org | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index b32b9ebb..f487fc68 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -1609,6 +1609,16 @@ https://github.com/alpaker/Fill-Column-Indicator/issues/21 for more details (advice-add 'company-call-frontends :before #'fci-on-off-fci-before-company) (add-hook 'prog-mode-hook 'fci-mode))) #+END_SRC +** highlight-indent-guides +#+BEGIN_SRC emacs-lisp +(use-package highlight-indent-guides + :commands highlight-indent-guides-mode + :preface + (add-hook 'prog-mode-hook 'highlight-indent-guides-mode) + :config + (progn + (setq highlight-indent-guides-method 'fill))) +#+END_SRC * Keybindings ** god-mode #+BEGIN_SRC emacs-lisp