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

9 lines
245 B
EmacsLisp

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