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