Skip to content

Commit

Permalink
Install Vundle
Browse files Browse the repository at this point in the history
* Set up Vundle in vimrc.
* Delete old copies of vim scripts.
* Bundles are automatically set up as referenced submodules.
* Ignore .netrwhist files given presence of submodules.
* Set up vundle in install script.
  • Loading branch information
Dan Croak committed Nov 16, 2012
1 parent d8adb07 commit 126344c
Show file tree
Hide file tree
Showing 62 changed files with 44 additions and 14,738 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,2 +1 @@
vim/.netrwhist
!bin !bin
5 changes: 4 additions & 1 deletion install.sh
Expand Up @@ -8,7 +8,7 @@ for name in *; do
if [ ! -L "$target" ]; then if [ ! -L "$target" ]; then
cutline=`grep -n -m1 "$cutstring" "$target" | sed "s/:.*//"` cutline=`grep -n -m1 "$cutstring" "$target" | sed "s/:.*//"`
if [ -n "$cutline" ]; then if [ -n "$cutline" ]; then
cutline=$((cutline-1)) cutline=$((cutline-1))
echo "Updating $target" echo "Updating $target"
head -n $cutline "$target" > update_tmp head -n $cutline "$target" > update_tmp
startline=`sed '1!G;h;$!d' "$name" | grep -n -m1 "$cutstring" | sed "s/:.*//"` startline=`sed '1!G;h;$!d' "$name" | grep -n -m1 "$cutstring" | sed "s/:.*//"`
Expand All @@ -33,3 +33,6 @@ for name in *; do
fi fi
fi fi
done done

git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
vim +BundleInstall +qa
2 changes: 0 additions & 2 deletions vim/after/indent/html.vim

This file was deleted.

0 comments on commit 126344c

Please sign in to comment.