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.
10 lines
302 B
EmacsLisp
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)
|