I\'ve setup a colorcolumn=80, but I found I can not wrap long lines in ~/.vimrc.
colorcolumn=80
Is there any method like C\'s \\ to concatenate?
\\
For e
Lines in the .vimrc file can be wrapped by putting the escaping \ at the beginning of the continuation line:
.vimrc
\
autocmd FileType python \ setlocal ai si et sta sw=4 \ textwidth=80 backspace=indent,eol,start fo=croql
See :h line-continuation
:h line-continuation