aboutsummaryrefslogtreecommitdiff
path: root/vim/indent/vim.vim
blob: 138b9205efd4375bd93bc35cf27f4753e6902b18 (plain) (blame)
1
2
3
4
5
6
7
8
9
" Observe VimL conventions for two-space indents
setlocal shiftwidth=2
setlocal softtabstop=2
setlocal tabstop=2

" Unload this indent plugin; suppress errors because ancient Vim can't use the
" '<' suffix syntax for resetting local integer
let b:undo_user_indent
      \ = 'silent! setlocal shiftwidth< softtabstop< tabstop<'