_ [comp] 続・vim で勝手にコメント/インデントをやめさせる

いつの間にか ruby syntax でも同様のおせっかいが起きるようになってたので、~/.vim/after/ftplugin/ruby.vim に以下追加。

" 勝手にコメントをやめさせる
set formatoptions-=o
set formatoptions-=r
" 勝手にインデントをやめさせる
set noautoindent
set nocindent