aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent/vim.vim
blob: 0cb1d3973293114255c530288edbafb2151a52f2 (plain) (blame)
1
2
3
4
5
6
7
" Observe VimL conventions for two-space indents
setlocal shiftwidth=2
setlocal softtabstop=2
if exists('b:undo_indent')
  let b:undo_indent = b:undo_indent
        \ . '|setlocal shiftwidth< softtabstop<'
endif