aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent/vim.vim
blob: bfd92aeb033dbfda35f7bc08c21014baf27653ca (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 s:ui = '|setlocal shiftwidth< softtabstop<'
  let b:undo_indent = b:undo_indent . s:ui
endif