set autoindent set smarttab " round the indent to a multiple o shiftwidth set shiftround if has("smartindent") set smartindent endif " enable filetype plugins if has('autocmd') filetype indent on filetype plugin on endif vnoremap < >gv " fix indentation of an entire file nnoremap gg=G`` inoremap gg=G``a " local replace nnoremap gr gd[{V%::s////g nnoremap gR gD:%s////g