updating the zsh and macos options. macos not ready for primetime

This commit is contained in:
Haak Saxberg 2015-09-07 00:51:36 -07:00
parent 94c94dab26
commit a4d559f689
4 changed files with 68 additions and 79 deletions

20
mac-files/setup_mac.sh Normal file
View file

@ -0,0 +1,20 @@
install_homebrew() {
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
}
grab_dependencies() {
brew install git
brew install vim
brew install zsh
brew install caskroom/cask/brew-cask
}
main() {
# abort if homebrew is already installed; we don't want to accidentaly stomp on things
if hash brew 2>/dev/null; then
exit(0)
install_homebrew
grab_dependencies
}
main