Created
February 27, 2012 19:08
-
-
Save Jaym3s/1926342 to your computer and use it in GitHub Desktop.
hackday setup instructions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Setup dotmatrix | |
cd ~ | |
git clone https://github.com/bendyworks/dotmatrix && | |
ln -s ~/dotmatrix/.ackrc .ackrc && | |
ln -s ~/dotmatrix/.bash_aliases .bash_aliases && | |
ln -s ~/dotmatrix/.bash_profile .bash_profile && | |
ln -s ~/dotmatrix/.bashrc .bashrc && | |
ln -s ~/dotmatrix/bin bin && | |
ln -s ~/dotmatrix/.ctags .ctags && | |
ln -s ~/dotmatrix/.cvsignore .cvsignore && | |
ln -s ~/dotmatrix/.gemrc .gemrc && | |
ln -s ~/dotmatrix/.gitconfig .gitconfig && | |
ln -s ~/dotmatrix/.irbrc .irbrc && | |
ln -s ~/dotmatrix/.rdebugrc .rdebugrc && | |
ln -s ~/dotmatrix/.rvmrc .rvmrc && | |
ln -s ~/dotmatrix/.screenrc .screenrc && | |
ln -s ~/dotmatrix/.tmux.conf .tmux.conf && | |
ln -s ~/dotmatrix/.vim .vim && | |
ln -s ~/dotmatrix/.vimrc .vimrc && | |
ln -s ~/dotmatrix/.watchr.rb .watchr.rb && | |
ln -s ~/dotmatrix/.zsh .zsh && | |
ln -s ~/dotmatrix/.zshrc .zshrc && | |
sh ~/bin/vimbundles.sh | |
# Setup GCC | |
curl -L https://github.com/downloads/kennethreitz/osx-gcc-installer/GCC-10.7-v2.pkg > GCC-installer.pkg && | |
open GCC-installer.pkg && | |
read -p "Press [Enter] once GCC is installed" && | |
echo 'export CC=/usr/bin/gcc-4.2' >> .bash_profile | |
# Setup RVM and install ruby | |
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) && | |
source ~/.bash_profile && | |
rvm install ruby-1.9.2 && | |
rvm --default use 1.9.2 | |
# HackDayAliases | |
echo "alias brew='echo Please talk to a bendyworker to install brew packages'" >> .bash_aliases | |
source .bash_aliases |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment