Vundle不安装vim插件

时间:2016-06-03 15:38:25

标签: vim

我试图安装vim插件,但它总是不起作用。这是我的.vimrc

set nocompatible
filetype off

" set up Vundle
" let Vundle manage Vundle
" required!
set rtp+=~/.vim/bundle/Vundle.vim
"plugins list
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'klen/python-mode'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'jnurmine/Zenburn'
Plugin 'altercation/vim-colors-solarized'
Plugin 'jalvesaq/R-Vim-runtime'
call vundle#end()

filetype plugin indent on
syntax enable
syntax on

当我运行:PluginInstall时,只安装了VundleVim/Vundle.vim(见下文)。我已经尝试了许多方法,我可以在网上找到但仍然无法修复它。有什么建议? enter image description here

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,将vim插入〜/ .vimrc并运行:source %,然后:PluginInstall为我工作。