Skip to content
mt3 edited this page Mar 29, 2012 · 33 revisions

Vundle Wiki

FAQ

  • Q Why am I asked for username/password?

    A This is an occurrence of an invalid repository name being used with Bundle, which then attempts to clone a 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 installing plugins for the first time in a fresh configuration produces errors. How can I fix that?

    A Fix your Chicken or Egg dilemma

  • Q How do I disable indentation set by plugins?

    A Use filetype plugin on instead of filetype plugin indent on.

  • Q I am getting the following 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.

  • Q It seems like Vundle cannot find the colorscheme I just installed.

    A Make sure colorscheme my_awesome_colorscheme is called AFTER the Bundle 'my_awesome_colorscheme' command. See #119 for details.

Vundle On OSX

  • Q Why does vim exit with an error?

    A Using filetype off with stock OSX vim (located at /usr/bin/vim) causes vim to exit with a 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
    

Clone this wiki locally