Last active
August 29, 2015 14:02
-
-
Save cburmeister/5ee9cb61b518847f4fba to your computer and use it in GitHub Desktop.
Quickly rebuild my OSX development environment.
This file contains 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
#!/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