summaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2014-10-31 10:02:07 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2014-10-31 10:02:07 +0100
commit4544a18619bc78bdd9a18425126ead9fcfe03e29 (patch)
treec60c8b2f7954853b09e5a9d501e134389b22b73c /.vim
parentfe004cf6e74eb6f5648f611ec76fca141c2fc9ed (diff)
downloaddotfiles-4544a18619bc78bdd9a18425126ead9fcfe03e29.tar.gz
dotfiles-4544a18619bc78bdd9a18425126ead9fcfe03e29.tar.bz2
dotfiles-4544a18619bc78bdd9a18425126ead9fcfe03e29.zip
[vim] Vundle API Change
Diffstat (limited to '.vim')
-rw-r--r--.vim/bundles.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/.vim/bundles.vim b/.vim/bundles.vim
index 06a091a..5fcbbcf 100644
--- a/.vim/bundles.vim
+++ b/.vim/bundles.vim
@@ -2,7 +2,7 @@ set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
-call vundle#rc()
+call vundle#begin()
" vundle itself
" on a fresh install you need to do:
@@ -68,4 +68,5 @@ Plugin 'PotatoesMaster/i3-vim-syntax'
" LiveScript support
Plugin 'necoro/vim-ls'
+call vundle#end()
filetype plugin indent on " required!