Skip to content

Instantly share code, notes, and snippets.

@cburmeister
Last active August 29, 2015 14:02
Show Gist options
  • Save cburmeister/5ee9cb61b518847f4fba to your computer and use it in GitHub Desktop.
Save cburmeister/5ee9cb61b518847f4fba to your computer and use it in GitHub Desktop.
Quickly rebuild my OSX development environment.
#!/bin/bash
DOTFILES_DIR="$HOME/src/dotfiles"
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
brew install git
mkdir src
git clone https://github.com/cburmeister/dotfiles.git "$DOTFILES_DIR"
. "$DOTFILES_DIR"/.bin/brew_install.sh
. "$DOTFILES_DIR"/.bin/install.sh
. "$DOTFILES_DIR"/.bin/clone.sh
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall
chsh -s /bin/zsh
source .zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment