You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
885 B
Bash
46 lines
885 B
Bash
#!/bin/bash
|
|
sudo -v # ask for password only at the beginning
|
|
|
|
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
|
|
|
|
# Homebrew
|
|
brew update
|
|
brew upgrade
|
|
brew tap homebrew/dupes
|
|
brew tap phinze/homebrew-cask
|
|
brew tap jimbojsb/launchrocket
|
|
brew tap homebrew/versions
|
|
|
|
# TODO
|
|
|
|
#brew cask install gpgtools
|
|
brew cleanup
|
|
|
|
brew cask alfred link
|
|
|
|
# Symlinks
|
|
bash ~/dotfiles/symlinks.sh
|
|
|
|
# Python
|
|
pip install --upgrade setuptools
|
|
pip install --upgrade pip
|
|
pip install git+git://github.com/Lokaltog/powerline
|
|
|
|
# Ruby TODO -- set up chruby, ruby-build some stuff
|
|
ruby-build 2.1.0 ~/.rubies/ruby-2.1.0
|
|
chruby 2.1.0
|
|
|
|
# Gems TODO
|
|
gem install earthquake
|
|
|
|
# Node packages TODO
|
|
# Cabal packages TODO
|
|
|
|
# Sane OS X defaults
|
|
bash ~/dotfiles/osx
|
|
|
|
# Run some of these: Alfred, slate, asepsis, keyremap4macbook, etc.
|
|
|
|
# App Store
|
|
echo "Install Xcode and Pixelmator from the App Store!"
|