I am running macvim 7.4 with following .vimrc file inside by home directory , but plugins are not loading on startup
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
@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…
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