blob: 508fd65ec28869db47aab11dc79d59301aeae215 (
plain)
1
2
3
4
5
6
7
8
|
;; This minor mode highlights indentation levels via font-lock
(use-package highlight-indent-guides)
(setq highlight-indent-guides-method 'character)
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
(provide 'init-indent-guides)
|