Last active
September 2, 2019 16:19
-
-
Save glombard/af5dfe15d58b97da0dfa to your computer and use it in GitHub Desktop.
Script to install some Mac OS X tools
This file contains hidden or 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
alias ll='ls -FGlAhp' | |
function goweb () { | |
cd ~/src/MyProj | |
git up | |
ll | |
git status --short | |
} |
This file contains hidden or 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
sudo ln -s /Applications/VMware\ Fusion.app/Contents/Library/vmrun /usr/bin/vmrun |
This file contains hidden or 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
# OSX Command Line Developer Tools (e.g. for git): | |
sudo xcode-select --install | |
# Install Homebrew | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
brew doctor | |
# Homebrew Cask - caskroom.io | |
brew install caskroom/cask/brew-cask | |
brew casl install vagrant | |
brew cask install google-chrome | |
brew cask install firefox | |
brew cask install sublime-text | |
brew cask install java | |
# java installed to '/opt/homebrew-cask/Caskroom/java/1.8.0_05' (5 files, 208M) | |
brew install scala | |
# /usr/local/Cellar/scala/2.11.1: 45 files, 28M, built in 47 seconds | |
# Sublime Text from shell: | |
sudo ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/bin/subl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment