I am setting Emacs for python development.
So I installed elpy.
But I do not like vertical guide lines for indentation.
How can I disable it or change its color?
You can disable highlight-indentation-mode for elpy-mode, by adding the following code to your emacs initialization.
highlight-indentation-mode
elpy-mode
(add-hook 'elpy-mode-hook (lambda () (highlight-indentation-mode -1)))
EDIT: changed nil to -1
Source
M-x customize-face
In the minibuffer enter: highlight-indentation-face
Now you can disable or change as you see fit.
Alternatively, place the cursor into any of the highlighted indentation bars then
The argument in the minibuffer should default to the proper value
You can customize the variable elpy-modules to disable the "display indentation markers" module.
elpy-modules
Copyright © 2021 Jogjafile Inc.
You can disable
highlight-indentation-mode
forelpy-mode
, by adding the following code to your emacs initialization.EDIT: changed nil to -1
Source