A while ago, I had to put
filetype plugin on
in my .vimrc for a plugin I use.
But this caused a change in autoindent, that drives me mad: Whenever I write a comment "//", and then press enter, vim autoindentation automatically enters another "//" in the next line. But hey, I am using one-line-comments, why would I use it again in the next line (ok, no discussion about that here ;))?
// This is a comment. <ENTER>
// <-- vim automatically puts '// ' there
What can I do to avoid this? I use the autoindent setting in my vim file. I already tried
filetype plugin indent off
but it does not work.