I\'m currently fighting with Vim, I can\'t seem to make the indentation options do what I want.
Here are my settings, I put them at the bottom of .vimrc to make sure the
If indent is N spaces (replace N with actual value), try the following
set cinoptions=p0,t0,:N,=0 set cinwords=if,else,switch,case,for,while,do set cindent
:N -> place 'case' label 0 characters from switch's indent
=0 -> indents the statements within case label