From 38d4dc896230c47ce623f30e5bd6f4c3011f8972 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Wed, 21 Aug 2013 10:17:54 -0400 Subject: replace pathogen with vundle --- .gitignore | 3 +-- .gitmodules | 24 ------------------------ deploy.sh | 5 +++++ vim/bundle/bufexplorer | 1 - vim/bundle/coffee-script | 1 - vim/bundle/ctrlp | 1 - vim/bundle/gitgutter | 1 - vim/bundle/nerdtree | 1 - vim/bundle/pathogen | 1 - vim/bundle/powerline | 1 - vim/bundle/solarized | 1 - vimrc | 19 +++++++++++++++---- 12 files changed, 21 insertions(+), 38 deletions(-) delete mode 100644 .gitmodules delete mode 160000 vim/bundle/bufexplorer delete mode 160000 vim/bundle/coffee-script delete mode 160000 vim/bundle/ctrlp delete mode 160000 vim/bundle/gitgutter delete mode 160000 vim/bundle/nerdtree delete mode 160000 vim/bundle/pathogen delete mode 160000 vim/bundle/powerline delete mode 160000 vim/bundle/solarized diff --git a/.gitignore b/.gitignore index 4d01141..8367412 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ -vim/.netrwhist -vim/doc/tags +vim/ dotfiles-backup diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index fadcd43..0000000 --- a/.gitmodules +++ /dev/null @@ -1,24 +0,0 @@ -[submodule "vim/bundle/pathogen"] - path = vim/bundle/pathogen - url = https://github.com/tpope/vim-pathogen.git -[submodule "vim/bundle/nerdtree"] - path = vim/bundle/nerdtree - url = https://github.com/scrooloose/nerdtree.git -[submodule "vim/bundle/coffee-script"] - path = vim/bundle/coffee-script - url = https://github.com/kchmck/vim-coffee-script.git -[submodule "vim/bundle/solarized"] - path = vim/bundle/solarized - url = https://github.com/altercation/vim-colors-solarized.git -[submodule "vim/bundle/bufexplorer"] - path = vim/bundle/bufexplorer - url = https://github.com/vim-scripts/bufexplorer.zip.git -[submodule "vim/bundle/ctrlp"] - path = vim/bundle/ctrlp - url = https://github.com/kien/ctrlp.vim.git -[submodule "vim/bundle/powerline"] - path = vim/bundle/powerline - url = https://github.com/Lokaltog/vim-powerline.git -[submodule "vim/bundle/gitgutter"] - path = vim/bundle/gitgutter - url = git://github.com/airblade/vim-gitgutter.git diff --git a/deploy.sh b/deploy.sh index b66b0d6..d85d7bf 100755 --- a/deploy.sh +++ b/deploy.sh @@ -14,6 +14,11 @@ do ln -sf `pwd`/${f} ~/.${f} done +if [ ! -d ~/.vim/bundle/vundle ]; then + git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle +fi +vim +BundleInstall +qall + if [ ! -e ~/.zshrc-local ]; then cp zshrc-local ~/.zshrc-local fi diff --git a/vim/bundle/bufexplorer b/vim/bundle/bufexplorer deleted file mode 160000 index 8c75e65..0000000 --- a/vim/bundle/bufexplorer +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8c75e65b647238febd0257658b150f717a136359 diff --git a/vim/bundle/coffee-script b/vim/bundle/coffee-script deleted file mode 160000 index ae7ebc3..0000000 --- a/vim/bundle/coffee-script +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ae7ebc39cbf7f29a1034ba3dbe7e947d7dda3bf9 diff --git a/vim/bundle/ctrlp b/vim/bundle/ctrlp deleted file mode 160000 index 2927ce4..0000000 --- a/vim/bundle/ctrlp +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2927ce4eabbe03a3fb008b0bfbe0fb02dcaf55b2 diff --git a/vim/bundle/gitgutter b/vim/bundle/gitgutter deleted file mode 160000 index 24efce0..0000000 --- a/vim/bundle/gitgutter +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 24efce03cc12dd30f63048627981ab911e551dd7 diff --git a/vim/bundle/nerdtree b/vim/bundle/nerdtree deleted file mode 160000 index 153041a..0000000 --- a/vim/bundle/nerdtree +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 153041ac939502746e5a24468910eb7214a3f593 diff --git a/vim/bundle/pathogen b/vim/bundle/pathogen deleted file mode 160000 index ab64b4d..0000000 --- a/vim/bundle/pathogen +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ab64b4ddd0c184a528780b498a0b0a5b40248f7c diff --git a/vim/bundle/powerline b/vim/bundle/powerline deleted file mode 160000 index 4df0cdc..0000000 --- a/vim/bundle/powerline +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4df0cdc009e590c1d6ec32a2a3c12ff8deeb6f25 diff --git a/vim/bundle/solarized b/vim/bundle/solarized deleted file mode 160000 index 528a59f..0000000 --- a/vim/bundle/solarized +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21 diff --git a/vimrc b/vimrc index b8f323a..8195ee6 100644 --- a/vimrc +++ b/vimrc @@ -1,10 +1,21 @@ " -" register pathogen +" vundle " -runtime bundle/pathogen/autoload/pathogen.vim -call pathogen#infect() -call pathogen#helptags() +set nocompatible +filetype off + +set rtp+=~/.vim/bundle/vundle/ +call vundle#rc() + +Bundle 'gmarik/vundle' + +Bundle 'scrooloose/nerdtree' +Bundle 'altercation/vim-colors-solarized' +Bundle 'vim-scripts/bufexplorer.zip' +Bundle 'kien/ctrlp.vim' +Bundle 'Lokaltog/vim-powerline' +Bundle 'airblade/vim-gitgutter' " " behavior -- cgit v1.2.3