Reputation: 63
Hello I am trying to install some plugins and use vundle as my plugin manager.
When I open gvim this is the error that I get
Error detected while processing /home/user/.vimrc:
line 9:
E117: Unknown function: vundle#rc
line 12:
E492: Not an editor command: Bundle 'gmarik/vundle'
And here is the snippet of the top of my .vimrc file
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundel/
call vundle#rc()
"Required Bundel Statement
Bundle 'gmarik/vundle'
"User Installed Bundles
Bundle 'neocomplcache/neocomplcache.vim'
Bunlde 'perlomni/perlomni.vim'
filetype plugin indent on
filetype on
syntax on
I installed it according to git hub and according to the read me that was downloaded with it.
I do not have access to a super user account so trying to unistall and reinstall vim will not work.
Also I tried installing pathogen and that worked for some bundles but would not work for perlomni.vim because it was an ftplugin and pathogen was not appending the bundles correctly and after research I saw most people saying vundle was better than pathogen.
Can anyone help me get my bundles working correctly?
I am trying to use either bundles downloaded from a git repository or a bundles that are stored on a shared root directory.
Thanks
Upvotes: 2
Views: 5083
Reputation: 31429
You spelled vundle wrong in your set rtp
line
set rtp+=~/.vim/bundle/vundel/
should probably be
set rtp+=~/.vim/bundle/vundle/
Upvotes: 6