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

11 lines
361 B
EmacsLisp

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