David Z
David Z

Reputation: 7041

Vundle does not install vim plugins

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? enter image description here

Upvotes: 3

Views: 2441

Answers (1)

Argos.LEE
Argos.LEE

Reputation: 179

I had the same issue, vim into ~/.vimrc and run :source % and then :PluginInstall worked for me.

Upvotes: 11

Related Questions