Created
January 10, 2015 03:04
-
-
Save ivancrneto/0235731f3668b8672545 to your computer and use it in GitHub Desktop.
NeoBundle Vimrc Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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