vim - Vundle not installing properly -


it seems not plugins installing properly. have following log file:

[2015-09-30 14:58:32] plugin user/l9                                                                      |~                                                                                                          [2015-09-30 14:58:32] $ git clone --recursive 'https://github.com/user/l9.git' '/home/sachin/.vim/bundle/n|~                                                                                                          ewl9'                                                                                                     |~                                                                                                          [2015-09-30 14:58:32] > cloning '/home/sachin/.vim/bundle/newl9'...                                  |~                                                                                                          [2015-09-30 14:58:32] > remote: repository not found.                                                     |~                                                                                                          [2015-09-30 14:58:32] > fatal: repository 'https://github.com/user/l9.git/' not found                     username 'https://github.com': sachinruk                                                                [2015-09-30 14:58:32] >                                                                                   |~                                                                                                          [2015-09-30 14:58:33]                                                                                     |~                                                                                                          [2015-09-30 14:58:33] helptags:                                                                           |~                                                                                                          [2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/vundle.vim/doc                                   |~                                                                                                          [2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/vim-fugitive/doc                                 |~                                                                                                          [2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/l9/doc                                           |~                                                                                                          [2015-09-30 14:58:33] :helptags /home/sachin/.vim/bundle/command-t/doc                                    |~                                                                                                          [2015-09-30 14:58:33] helptags: 4 plugins processed             

and .vimrc file this:

set nocompatible              " improved, required filetype off                  " required  set rtp+=~/.vim/bundle/vundle.vim call vundle#begin() " let vundle manage vundle, required plugin 'vundlevim/vundle.vim' " plugin on github repo plugin 'tpope/vim-fugitive' " plugin http://vim-scripts.org/vim/scripts.html plugin 'l9' " git plugin not hosted on github plugin 'git://git.wincent.com/command-t.git'     plugin 'rstacruz/sparkup', {'rtp': 'vim/'} " avoid name conflict l9 plugin 'user/l9', {'name': 'newl9'}  call vundle#end()            " required filetype plugin indent on    " required 

its obvious there no https://github.com/user/l9 page i'm not quite sure doing wrong. asks github username , password before fails.

more importantly need worry error?

no don't need worry error. seem have copied vimrc readme, readme illustration purposes. should remove plugins don't need. below empty vundle config. need.

set nocompatible  filetype off  " set runtime path include vundle , initialize set rtp+=~/.vim/bundle/vundle.vim call vundle#begin()  " let vundle manage vundle, required plugin 'gmarik/vundle.vim'  " of plugins must added before following line call vundle#end()            " required filetype plugin indent on    " required 

now if want add new plugin example nerdtree

you add line

plugin 'scrooloose/nerdtree'

now vimrc this

set nocompatible  filetype off  " set runtime path include vundle , initialize set rtp+=~/.vim/bundle/vundle.vim call vundle#begin()  " let vundle manage vundle, required plugin 'gmarik/vundle.vim' " added nerdtree plugin 'scrooloose/nerdtree' " of plugins must added before following line call vundle#end()            " required filetype plugin indent on    " required 

now, save vimrc , restart vim can source new vimrc issue :plugininstall command:

:plugininstall 

more information on using can found here


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -