emacs-personal/lisp/init-indent-guides.el

9 lines
240 B
EmacsLisp

;; 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)