Skip to content

Instantly share code, notes, and snippets.

@ivancrneto
Created January 10, 2015 03:03
Show Gist options
  • Save ivancrneto/473dc7e3d6feaafa0018 to your computer and use it in GitHub Desktop.
Save ivancrneto/473dc7e3d6feaafa0018 to your computer and use it in GitHub Desktop.
NeoBundle Vimrc Windows dirty
if has('vim_starting')
set nocompatible " Be iMproved
" Required:
let &runtimepath .= ',' . expand($HOME . '/.vim/bundle/neobundle.vim/')
endif
" let neobundle_readme=expand($HOME . '/.vim/bundle/neobundle.vim/README.md')
"
" if !filereadable(neobundle_readme)
" let bundle = expand($HOME . '/.vim/bundle')
" let neobundle = expand($HOME . '/.vim/bundle/neobundle.vim')
"
" echo "Installing NeoBundle..."
" echo ""
" " let s:bundle =
" if !filereadable(bundle)
" " silent !mkdir . expand($HOME . '/.vim/bundle')
" " execute '!mkdir "' . bundle
" " execute 'silent !mkdir "' . bundle . '"'
" execute '!mkdir "' . bundle . '"'
" endif
" " silent !git clone https://github.com/Shougo/neobundle.vim expand($HOME . '/.vim/bundle/neobundle.vim/')
" silent '!git clone https://github.com/Shougo/neobundle.vim "' . 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