aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent/gitconfig.vim
blob: 16a948abb843e70f356862eb4d793d80975afd7d (plain) (blame)
1
2
3
4
5
6
" Use tabs for indent in Git config files, rather than fighting with the
" frontend tool
setlocal noexpandtab
setlocal softtabstop=0
let &shiftwidth = &tabstop
let b:undo_indent .= '|setlocal expandtab< softtabstop< shiftwidth<'