我试着安装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 (如下所示)。我已经尝试了很多方法,我可以在网上找到,但仍然不能解决它。有什么建议吗?

发布于 2020-11-20 10:07:57
我遇到了同样的问题,vim进入~/.vimrc并运行:source %,然后:PluginInstall为我工作。
https://stackoverflow.com/questions/37618447
复制相似问题