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