我试图安装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
(见下文)。我已经尝试了许多方法,我可以在网上找到但仍然无法修复它。有什么建议?
答案 0 :(得分:0)
我遇到了同样的问题,将vim插入〜/ .vimrc并运行:source %
,然后:PluginInstall
为我工作。