配置文件是github上的。
rtp确认了N遍没问题
设置不兼容“必须改进,必需
文件类型关闭”必需
" 设置运行时路径包含 Vundle 并初始化
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" " 或者,传递 Vundle 应该安装插件的路径
" "call vundle #begin('~/some/path/here')
"
" " 让 Vundle 管理 Vundle,需要
Plugin 'VundleVim/Vundle.vim'
"
" " 以下是支持不同格式的示例
" "将插件命令保留在 vundle#begin/end 之间。
" " GitHub 存储库上的插件
" 插件 'tpope/vim-fugitive'
" " 来自 http://vim-scripts.org/vim/sc 的插件...
"插件 'L9'
" " Git 插件未托管在 GitHub 上
" 插件 'git://git.wincent.com/command-t.git'
" " 本地计算机上的 git 存储库(即使用您自己的插件时) )
" Plugin 'file:///home/gmarik/path/to/plugin'
" " Sparkup Vim 脚本位于此 repo 的一个名为 vim 的子目录中。
" " 传递路径以正确设置运行时路径。
" 插件 'rstacruz/sparkup', {'rtp': 'vim/'}
" " 如果您已经在其他地方安装了
" " 不同版本,请安装 L9 并避免命名冲突。
" 插件 'ascenator/L9 ', {'name': 'newL9'}
"
" " 所有插件必须添加到以下行之前
call vundle#end() " required
filetype 插件缩进 " required
为情所困2017-05-16 16:37:36
估计是Vundle还没安装。用这个命令安装下:
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
看下Vundle的Readme