.vimrc

” Indentation
set autoindent ” Use the current line’s indent level to set the indent level of new lines
set smartindent ” Attempt to guess the indent level of any new line based on the previous line
set smarttab
set wrap ” Wrap long lines visually, but don’t actually insert breaks
set expandtab
set shiftwidth=2 Continue reading