init-indent-guides.el 456 B

12345678910111213141516171819
  1. ;;; init-indent-guides.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;; This minor mode highlights indentation levels via font-lock
  6. (use-package highlight-indent-guides
  7. :config
  8. (setq highlight-indent-guides-method 'character)
  9. ;; Indent character samples: fill, column or character
  10. (setq highlight-indent-guides-method 'character))
  11. (provide 'init-indent-guides)
  12. ;; End:
  13. ;;; init-indent-guides.el ends here