provide highlight-indent-guide

This commit is contained in:
Jesús 2018-09-23 16:34:15 -05:00
parent 3ba8cf3d87
commit cc7ea1dcc9
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
3 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,3 @@
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
@ -11,7 +10,7 @@
'(anzu-search-threshold 1000)
'(package-selected-packages
(quote
(rainbow-mode scss-mode sass-mode less-css-mode ac-php smarty-mode php-mode pkgbuild-mode markdown-mode flycheck anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line nlinum sublime-themes))))
(rainbow-mode scss-mode sass-mode less-css-mode ac-php smarty-mode php-mode pkgbuild-mode markdown-mode flycheck highlight-indent-guides anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line nlinum sublime-themes))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -34,6 +34,7 @@
(require 'init-gui)
(require 'init-editing-utils)
(require 'init-modeline)
(require 'init-indent-guides)
;; Tools
(require 'init-flycheck)
;; Languages

View File

@ -0,0 +1,8 @@
;; This minor mode highlights indentation levels via font-lock
(require-package 'highlight-indent-guides)
(setq highlight-indent-guides-method 'character)
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
(provide 'init-indent-guides)