aboutsummaryrefslogtreecommitdiff
path: root/vim/macros/indent/spaces.vim
blob: d4b36afe2a2c023d9eb62d64be773bb2d6f27ba8 (plain) (blame)
1
2
3
4
5
6
7
" Use spaces for current buffer's indentation (set 'shiftwidth' first)
setlocal expandtab
let b:undo_ftplugin .= '|setlocal expandtab< shiftwidth<'
if &l:softtabstop != -1
  let &l:softtabstop = &l:shiftwidth
  let b:undo_ftplugin .= '|setlocal softtabstop<'
endif