Author: Kyle Fuller <inbox@kylefuller.co.uk> 2014-02-10 17:04:14 +0000 +0000
Committer: Kyle Fuller <inbox@kylefuller.co.uk> 2014-02-10 18:16:22 +0000 +0000
Commit: b7d8b3896bb916a8660f130184406109103935b2
Parent: 013a0e666c6f44d87d60f364ac8922b3109a6c84
Vim: Install vundle
diff --git a/.gitmodules b/.gitmodules
index 706cab493fde2d8a84d5e18c381fab25455b9f99..750b99665437dd9892c3b9f35db39e6727f25862 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -25,3 +25,6 @@ url = https://github.com/mattn/gist-vim
[submodule "Xcode5 Plugin.xctemplate"]
path = Library/Developer/Xcode/Templates/Project Templates/Application Plug-in/Xcode5 Plugin.xctemplate
url = https://github.com/kattrali/Xcode5-Plugin-Template
+[submodule ".vim/bundle/vundle"]
+ path = .vim/bundle/vundle
+ url = https://github.com/gmarik/vundle
diff --git a/.vimrc b/.vimrc
index ed340cd0d07e0411d27cdd0d92dbd202efd26a3e..3f917df72f4a8951a1ef618f654abd85f2ecf5d0 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,4 +1,8 @@
set nocompatible
+filetype off
+
+set rtp+=~/.vim/bundle/vundle/
+call vundle#rc()
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()