emacs-personal/modules/init-indent-guides.el
2023-05-13 01:20:11 -04:00

20 lines
413 B
EmacsLisp

;;; init-indent-guides.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; This minor mode highlights indentation levels via font-lock
(use-package highlight-indent-guides
:ensure t
:config
(setq highlight-indent-guides-method 'character)
:hook
(prog-mode . highlight-indent-guides-mode))
(provide 'init-indent-guides)
;; End:
;;; init-indent-guides.el ends here