aboutsummaryrefslogtreecommitdiff
path: root/vim/bundles.vim
diff options
context:
space:
mode:
authorMiquel Sabaté <mikisabate@gmail.com>2014-11-14 18:31:09 +0100
committerMiquel Sabaté <mikisabate@gmail.com>2014-11-14 18:31:09 +0100
commitd947e6d70271873d37bab37e357505c5b0d01bf3 (patch)
tree559e97d3e6153fbb65aa58757271f268eef92f8b /vim/bundles.vim
parent098a2e22ac98b01b1cc0a2b64e0c81718743055e (diff)
downloaddotfiles-d947e6d70271873d37bab37e357505c5b0d01bf3.tar.gz
dotfiles-d947e6d70271873d37bab37e357505c5b0d01bf3.zip
vim: updated vundle -> Vundle.vim.
Diffstat (limited to 'vim/bundles.vim')
-rw-r--r--vim/bundles.vim17
1 files changed, 10 insertions, 7 deletions
diff --git a/vim/bundles.vim b/vim/bundles.vim
index 5e60959..2affba0 100644
--- a/vim/bundles.vim
+++ b/vim/bundles.vim
@@ -1,14 +1,17 @@
" Vundle setup
-set rtp+=~/.vim/bundle/vundle/
-call vundle#rc()
-Bundle 'gmarik/vundle'
+set rtp+=~/.vim/bundle/Vundle.vim
+call vundle#begin()
+
+Plugin 'gmarik/Vundle.vim'
" My list of plugins.
-Bundle 'tpope/vim-surround.git'
-Bundle 'kien/ctrlp.vim.git'
-Bundle 'derekwyatt/vim-scala.git'
-Bundle 'fatih/vim-go'
+Plugin 'tpope/vim-surround.git'
+Plugin 'kien/ctrlp.vim.git'
+Plugin 'derekwyatt/vim-scala.git'
+Plugin 'fatih/vim-go'
+
+call vundle#end()
""
" Some small adjustments for the installed plugins.