I work in several groups, each of which has its own tab/indentation/spacing standards in C.
Is there a way to have separate selectable VIM configurations for each so
You can also put autocommands in your .vimrc which set specific options on a per-path basis.
.vimrc
au BufRead,BufNewFile /path/to/project1/* setl sw=4 et au BufRead,BufNewFile /path/to/project2/* setl sw=3 noet