ivancrneto
1/10/2015 - 3:04 AM

NeoBundle Vimrc Windows

NeoBundle Vimrc Windows

if has('vim_starting')
  set nocompatible               " Be iMproved
 
  " Required:
  let &runtimepath .= ',' . expand($HOME . '/.vim/bundle/neobundle.vim/')
endif
 
" Required:
call neobundle#begin(expand($HOME . '/.vim/bundle/'))
 
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
 
call neobundle#end()
 
" Required:
filetype plugin indent on
 
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck