2

您好我正在尝试安装一些插件并使用 vundle 作为我的插件管理器。

当我打开 gvim 这是我得到的错误

Error detected while processing /home/user/.vimrc:
line    9:
E117: Unknown function: vundle#rc
line   12:
E492: Not an editor command: Bundle 'gmarik/vundle'

这是我的 .vimrc 文件顶部的片段

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

我根据 git hub 和随它下载的 read me 安装了它。

我无权访问超级用户帐户,因此尝试卸载并重新安装 vim 将不起作用。

我还尝试安装病原体,它适用于某些捆绑包,但不适用于 perlomni.vim,因为它是一个 ftplugin 并且病原体没有正确附加捆绑包,经过研究,我看到大多数人说 vundle 比病原体更好。

谁能帮我让我的捆绑包正常工作?

我正在尝试使用从 git 存储库下载的包或存储在共享根目录中的包。

谢谢

4

1 回答 1

6

You spelled vundle wrong in your set rtp line

set rtp+=~/.vim/bundle/vundel/

should probably be

set rtp+=~/.vim/bundle/vundle/
于 2013-07-22T15:04:29.997 回答