LoginSignup
2
2

More than 5 years have passed since last update.

vim with vundle (vim plugin manager)

Posted at

a little code that I saw long time ago

put it in your .vimrc

then vundle (vim plugin manager) will automatic install if you have git

then your can happly use vundle to mange your vim plugin :)

vundle support three source :

  • vim-scripts repos
  • original repos on github
  • non github repos
let iCanHazVundle=1
let vundle_readme=expand('~/.vim/bundle/vundle/README.md')
if !filereadable(vundle_readme)
    echo "Installing Vundle.."
    echo ""
    silent !mkdir -p ~/.vim/bundle
    silent !git clone https://github.com/gmarik/vundle ~/.vim/bundle/vundle
    let iCanHazVundle=0
endif

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

" let Vundle manage Vundle
Bundle 'gmarik/vundle'
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2