Moved to Vundle

Did some additional cleanup as well.
This commit is contained in:
Josh Sherman 2013-12-14 14:08:34 -05:00
parent 4642d43a81
commit a0c4260af6
13 changed files with 21 additions and 49 deletions

24
.gitmodules vendored
View file

@ -1,27 +1,3 @@
[submodule "vim/plugins/ervandew/supertab"]
path = vim/plugins/ervandew/supertab
url = git@github.com:ervandew/supertab.git
[submodule "vim/plugins/msanders/snipmate.vim"]
path = vim/plugins/msanders/snipmate.vim
url = git@github.com:msanders/snipmate.vim.git
[submodule "vim/plugins/scrooloose/nerdtree"]
path = vim/plugins/scrooloose/nerdtree
url = git@github.com:scrooloose/nerdtree.git
[submodule "vim/plugins/scrooloose/syntastic"]
path = vim/plugins/scrooloose/syntastic
url = git@github.com:scrooloose/syntastic.git
[submodule "vim/plugins/tpope/vim-fugitive"]
path = vim/plugins/tpope/vim-fugitive
url = git@github.com:tpope/vim-fugitive.git
[submodule "vim/plugins/vim-scripts/Command-T"]
path = vim/plugins/vim-scripts/Command-T
url = git@github.com:vim-scripts/Command-T.git
[submodule "vim/plugins/vim-scripts/Flex-Development-Support"]
path = vim/plugins/vim-scripts/Flex-Development-Support
url = git@github.com:vim-scripts/Flex-Development-Support.git
[submodule "vim/plugins/vim-scripts/SearchComplete"]
path = vim/plugins/vim-scripts/SearchComplete
url = git@github.com:vim-scripts/SearchComplete.git
[submodule "private"]
path = private
url = git@github.com:joshtronic/dotfiles-private.git

0
go
View file

20
setup
View file

@ -137,23 +137,9 @@ fi
ln -s $DOTFILES/vim/vimrc ~/.vimrc
# Pulls down and installs vim plugins
DOTVIM=~/.vim
if [ -d $DOTVIM ];
then
rm -r $DOTVIM
fi
mkdir $DOTVIM
OWNERS=( "ervandew" "msanders" "scrooloose" "scrooloose" "tpope" "vim-scripts" "vim-scripts" "vim-scripts" )
REPOS=( "supertab" "snipmate.vim" "nerdtree" "syntastic" "vim-fugitive" "Command-T" "Flex-Development-Support" "SearchComplete" )
for (( i = 0; i < ${#OWNERS[@]}; i++ ))
do
cp -R $DOTFILES/vim/plugins/${OWNERS[$i]}/${REPOS[$i]}/* $DOTVIM
done
# Gets our Vundle on!
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
vim +BundleInstall +qall
mkdir $DOTVIM/colors
cp -R $DOTFILES/vim/colors/* $DOTVIM/colors

BIN
vim/.vimrc.swp Normal file

Binary file not shown.

@ -1 +0,0 @@
Subproject commit e2990372442fdf026cc1ef458abdf9a1a4e891ef

@ -1 +0,0 @@
Subproject commit f5a75d075d3c005ebe69e3f5e56cf99516e8aa3b

@ -1 +0,0 @@
Subproject commit 1dc3891f960c25aa3f23aa46f5afc8d41db38233

@ -1 +0,0 @@
Subproject commit 36db8f4b164a5f72e5f1b914521c284c82d0b407

@ -1 +0,0 @@
Subproject commit 003f38c6a4d8e3d527e4e1dfeab6fdf05c8ff149

@ -1 +0,0 @@
Subproject commit 8df5676d30bac725db6c9f86fb1c997f65eaa2fb

@ -1 +0,0 @@
Subproject commit f98b17f50576f3684489f2ec554c9f10e0751748

@ -1 +0,0 @@
Subproject commit d85ccf8c6c1fa88feff0c56b8fe271b7d91bd292

View file

@ -1,4 +1,22 @@
set nocompatible
filetype off " required by Vundle
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Required, let Vundle manage Vundle
Bundle 'gmarik/vundle'
Bundle 'ervandew/supertab'
Bundle 'msanders/snipmate.vim'
Bundle 'scrooloose/nerdtree'
Bundle 'scrooloose/syntastic'
Bundle 'tpope/vim-fugitive'
Bundle 'vim-scripts/Command-T'
"Bundle 'vim-scripts/Flex-Development-Support'
Bundle 'vim-scripts/SearchComplete'
filetype plugin indent on " Also required by Vundle
" Supposed to fix https://github.com/millermedeiros/vim-statline/issues/6
let g:statline_syntastic = 0