Initial commit

This commit is contained in:
Eryn Wells 2011-05-03 21:53:50 -07:00
commit 662fe0334c
37 changed files with 1614 additions and 0 deletions

31
setup.sh Executable file
View file

@ -0,0 +1,31 @@
#!/bin/bash
dfdir=$(cd "$(dirname "$0")" && pwd)
ln -s $dfdir/profile $HOME/.profile
ln -s $dfdir/rc $HOME/.rc
ln -s $dfdir/zshrc $HOME/.zshrc
ln -s $dfdir/zsh $HOME/.zsh
ln -s $dfdir/zprofile $HOME/.zprofile
ln -s $dfdir/vimrc $HOME/.vimrc
ln -s $dfdir/vim $HOME/.vim
ln -s $dfdir/indent.pro $HOME/.indent.pro
ln -s $dfdir/screenrc $HOME/.screenrc
ln -s $dfdir/ledgerrc $HOME/.ledgerrc
ln -s $dfdir/toprc $HOME/.toprc
ln -s $dfdir/gitconfig $HOME/.gitconfig
[ `uname -s` = "Linux" ] && ln -s $dfdir/Xdefaults $HOME/.Xdefaults
touch $HOME/.hushlogin
# Initialized submodules
cd $dfdir
git submodule init
git submodule update
exit 0