How to Disable Emacs elpy Vertical Guide Lines for Indentation?

Viewed 2225

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?

enter image description here

3 Answers

You can customize the variable elpy-modules to disable the "display indentation markers" module.

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

M-x customize-face

The argument in the minibuffer should default to the proper value

Related