vim/after/indent.vim

24 lines
785 B
VimL
Executable File

" Tabs
set expandtab
set shiftwidth=2
set softtabstop=2
if has('smartindent')
" Do smart autoindenting when starting a new line
set smartindent
endif
" Copy indent from current line when starting a new line
set autoindent
if has('cindent')
" The 'cinoptions' affect the way 'cindent' re-indents lines in a C program.
" * N-s - don't indent inside C++ namespace
" * E-s - don't indent inside C++ extern "C"
" * g1 - indent scope declarations {public,private,protected} 1 space
" * h1 - indent statements after scope declarations 1 space more
" * l1 - indent case statement scopes with the case label
" * (0 - don't indent inside unclosed parenthesis
" * i4 - indent C++ class base declarations and constructor initializers
set cinoptions=N-sE-sg1h1l1(01i2
endif