aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-indent-guides.el
blob: 221c7ca0c57bd635d9a4328fac6ac5bd9952ffea (plain)
1
2
3
4
5
6
7
8
9
10
;; This minor mode highlights indentation levels via font-lock

(use-package highlight-indent-guides
  :config
  (setq highlight-indent-guides-method 'character)
  ;; Indent character samples: fill, column or character
  (setq highlight-indent-guides-method 'character)
  (add-hook 'prog-mode-hook 'highlight-indent-guides-mode))

(provide 'init-indent-guides)