python mode automatically set highlight on 80 column, I can't seem to find a way to disable it, pylint report errors if I ever wrote a line longer than 79 so I don't need this column highlight
Take a look at https://github.com/klen/python-mode/issues/466.
You can turn off the red line by setting pymode_options_colorcolumn to 0 in your .vim config like so:
let g:pymode_options_colorcolumn = 0
This is not working for me. Setting
let g:pymode_options_colorcolumn = 0
does nothing, that red line is still there.
set cc=
should eliminate the red line
Most helpful comment
You can turn off the red line by setting pymode_options_colorcolumn to 0 in your .vim config like so: