dotfiles/install.sh

20 lines
620 B
Bash
Raw Normal View History

2012-02-16 21:14:35 -05:00
#!/bin/bash
2018-10-01 14:26:22 -04:00
echo "Installing xcode commandline tools..."
xcode-select --install
# Mojave fix
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
2012-05-07 16:26:45 -04:00
2018-10-01 14:26:22 -04:00
echo "Installing homebrew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2018-10-01 14:26:22 -04:00
echo "Installing oh-my-zsh..."
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
2018-10-01 14:26:22 -04:00
echo "Installing homesick..."
sudo gem install homesick
homesick clone git@github.com:walkah/dotfiles.git
2018-10-01 14:26:22 -04:00
echo "Initial brew bundle..."
brew bundle --global