Skip to content
gmarik edited this page Aug 24, 2011 · 33 revisions

Vundle Wiki

FAQ

  • Q Why am I asked for username/pass?

    A This is the case of invalid name used with Bundle, which leads to attempt to clone nonexistent repo:

    git clone http://github.com/gmarik/non_existin_repo
    Cloning into non_existin_repo...
    Username: 
    Password: 
    fatal: Authentication failed
    
  • Q My configuration is bundle dependant, so when I try to install plugins for the first time I get errors. How do I fix that?

    A Fix your Chicken or Egg dilemma

  • Q how do i disable indentation set by plugins?

    A make sure you use filetype plugin on instead filetype plugin indent on

  • Q getting this error

    Cloning into /root/zuo/.vim/bundle/The-NERD-tree...
    error: SSL certificate problem, verify that the CA cert is OK. Details:
    error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing    https://github.com/vim-scripts/The-NERD-tree.git/info/refs
    

    A add let $GIT_SSL_NO_VERIFY = 'true' to your .vimrc.

Vundle On OSX

  • Q Why does vim exit with an error?

    A using filetype off with stock OSX vim (/usr/bin/vim) causes vim to exit with non zero error code in completely valid cases. The workaround is to enable filetype before disabling it, like this:

    filetype on
    filetype off
    
    "... your configuration goes here