Replace "highlight-indent-guides" with "indent-bars"

This commit is contained in:
Adam Goldsmith 2024-01-10 01:53:08 -05:00
parent d97622ed2a
commit d63c58b12e
1 changed files with 11 additions and 4 deletions

View File

@ -657,10 +657,17 @@
:config
(setq lsp-java-save-action-organize-imports nil)))
(use-package highlight-indent-guides :ensure
:delight
:config
:hook (prog-mode . highlight-indent-guides-mode))
(use-package indent-bars
:quelpa (indent-bars :fetcher github :repo "jdtsmith/indent-bars")
:custom
(indent-bars-treesit-support t)
(indent-bars-no-descend-string t)
(indent-bars-treesit-ignore-blank-lines-types '("module"))
(indent-bars-treesit-wrap '((python argument_list parameters ; for python, as an example
list list_comprehension
dictionary dictionary_comprehension
parenthesized_expression subscript)))
:hook ((python-base-mode yaml-mode) . indent-bars-mode))
(use-package editorconfig :ensure t :demand
:delight