aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-indent-guides.el
blob: f2be7ced2c97afbe575ade28d07e80872619146d (plain)
1
2
3
4
5
6
7
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)