emacs-personal/lisp/init-indent-guides.el
Jesús e28ea4e2df
Disable for default init-guides
when this default mode is used in files of more than 15000 lines of code
it freeze!, is better to look at the file without the guidelines
and then activate this mode.
2018-11-01 22:22:52 -05:00

10 lines
302 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))
(provide 'init-indent-guides)