diff --git a/config.org b/config.org index 1e5d666..cfa4a36 100644 --- a/config.org +++ b/config.org @@ -1427,6 +1427,22 @@ Depends on pyvenv ) #+END_SRC +Highlight indentations +#+BEGIN_SRC emacs-lisp +(use-package highlight-indent-guides + :ensure t + :defer t + :init + (add-hook 'python-mode-hook 'highlight-indent-guides-mode) + :config + (setq highlight-indent-guides-method 'character + highlight-indent-guides-character ?\| + highlight-indent-guides-auto-odd-face-perc 15 + highlight-indent-guides-auto-even-face-perc 15 + highlight-indent-guides-auto-character-face-perc 20)) +#+END_SRC + + Anaconda test #+BEGIN_SRC emacs-lisp