My #Emacs highlight-indent-guides config
lisp
(use-package highlight-indent-guides
:hook
( (prog-mode . highlight-indent-guides-mode)
(yaml-mode . highlight-indent-guides-mode) )
:custom
(highlight-indent-guides-method 'bitmap)
(highlight-indent-guides-responsive 'top)
:custom-face
(highlight-indent-guides-even-face ((t nil)))
(highlight-indent-guides-top-even-face ((t nil)))
(highlight-indent-guides-top-odd-face ((t nil))))

There are no comments yet.