-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Home
-
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?
-
Q how do i disable indentation set by plugins?
A make sure you use
filetype plugin oninsteadfiletype 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/refsA add
let $GIT_SSL_NO_VERIFY = 'true'to your.vimrc. -
Q seems like Vundle cannot find colorscheme I just installed
A make sure
colorscheme my_awesome_colorschemefollows theBundle 'my_awesome_colorscheme'command. See #119 for details.
-
Q Why does vim exit with an error?
A using
filetype offwith stock OSXvim(/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