blob: 660b64a6f75099acc9f9401a857801614b09f88d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;;; init-indent-guides.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; This minor mode highlights indentation levels via font-lock
(use-package highlight-indent-guides
:ensure t
:config
(setq highlight-indent-guides-method 'character)
:hook
(prog-mode . highlight-indent-guides-mode))
(provide 'init-indent-guides)
;; End:
;;; init-indent-guides.el ends here
|