我刚刚将Vundle安装到我的/ Users / name目录(即/Users/name/.vim/bundle/Vundle.vim),并在我的根目录中设置了一个.vimrc文件,其中包含以下内容: / p>
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Bundle 'daylerees/colour-schemes', { "rtp": "vim/" }
colorscheme frontier
call vundle#end()
filetype plugin indent on
我按照建议运行了:PluginInstall
,它说已经安装了所有内容,但是我找不到"颜色方案前沿未找到"每次我打开vim都会出错。
就我所做的而言,我是否遗漏了任何步骤?
答案 0 :(得分:1)
在filetype
行之后添加以下行:
syntax on
在 colorscheme frontier
行后移动call vundle#end()
行。
答案 1 :(得分:0)
我认为你可能会混合旧的和新的Vundle语法。而不是
Bundle 'daylerees/colour-schemes', { "rtp": "vim/" }
试
Plugin 'daylerees/colour-schemes', { 'rtp': 'vim/' }
请注意使用单引号而不是双引号。