Browse Source

highlight indents in python-mode

master
Marc Pohling 6 years ago
parent
commit
c2fce098d2
1 changed files with 16 additions and 0 deletions
  1. 16
      config.org

16
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

Loading…
Cancel
Save