Skip to content

Instantly share code, notes, and snippets.

@Jaym3s
Created February 27, 2012 19:08
Show Gist options
  • Save Jaym3s/1926342 to your computer and use it in GitHub Desktop.
Save Jaym3s/1926342 to your computer and use it in GitHub Desktop.
hackday setup instructions
# 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