Reputation: 7041
I was trying to install vim plugins but it always doesn't work. Here is my .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
And when I ran :PluginInstall
, only VundleVim/Vundle.vim
was installed (see below). I have tried many ways that I can find online but still can't fix it. Any suggestions?
Upvotes: 3
Views: 2441
Reputation: 179
I had the same issue, vim into ~/.vimrc and run :source %
and then :PluginInstall
worked for me.
Upvotes: 11