Skip to content

Instantly share code, notes, and snippets.

@ivancrneto
Created January 10, 2015 03:04
Show Gist options
  • Save ivancrneto/0235731f3668b8672545 to your computer and use it in GitHub Desktop.
Save ivancrneto/0235731f3668b8672545 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment