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

(provide 'init-indent-guides)