Vundle.vim: Plugins not loading

Created on 3 Jul 2015  Â·  7Comments  Â·  Source: VundleVim/Vundle.vim

I am running macvim 7.4 with following .vimrc file inside by home directory , but plugins are not loading on startup

.vimrc

set nocompatible
filetype off

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'gmarik/Vundle.vim'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'kien/ctrlp.vim'

call vundle#end()

filetype plugin indent on

set noswapfile
set guifont=Inconsolata\ for\ Powerline:h15
let g:Powerline_symbols = 'fancy'
set encoding=utf-8
set t_Co=256
set fillchars+=stl:\ ,stlnc:\
set term=xterm-256color
set termencoding=utf-8

Most helpful comment

I found that vim turn syntax off since 7.4 by default which is misleading that plugins aren't loaded.
Append this in .vimrc

syntax on

All 7 comments

@thetutlage Is the above your entire vimrc? Have you installed the plugins?
:PluginInstall

Yes above is the entire vimrc , and i did installed plugins using :PluginInstall

Do the plugins load at all?
You may need to set the directory for Vundle to install plugins as they may be installing them somewhere else.

call vundle#begin('~/some/path/here')

Try call vundle#begin('~/.vim/bundle')

I found that vim turn syntax off since 7.4 by default which is misleading that plugins aren't loaded.
Append this in .vimrc

syntax on

I have the same problem.

no feedback. Closing…

Was this page helpful?
0 / 5 - 0 ratings

Related issues

unode picture unode  Â·  5Comments

albertz picture albertz  Â·  8Comments

lesterpjy picture lesterpjy  Â·  4Comments

binarykitchen picture binarykitchen  Â·  3Comments

eiger3970 picture eiger3970  Â·  5Comments