[Emacs] Add highlight-indent-guides mode

This commit is contained in:
Ivan Malison 2016-12-28 19:41:43 -08:00
parent 75735c24e0
commit 79af45c400
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -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