Vundle不安装vim插件

Dav*_*d Z 3 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
Run Code Online (Sandbox Code Playgroud)

当我运行时:PluginInstall,仅VundleVim/Vundle.vim安装了(见下文)。我已经尝试了很多网上能找到的方法,但仍然无法修复。有什么建议么? 在此输入图像描述

小智 10

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