aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent/c.vim
blob: c3240acbe2127b4e65eb0e9c0f44f16cb16c6d8d (plain) (blame)
1
2
3
4
5
6
" Use tabs for C
setlocal noexpandtab shiftwidth=0 tabstop=8
if &softtabstop != -1
  let &softtabstop = &shiftwidth
endif
let b:undo_ftplugin .= '|setlocal expandtab< shiftwidth< softtabstop< tabstop<'