Last active
July 21, 2017 12:39
-
-
Save GregBrimble/b35c894b192f01fc75c79bbdfaaff9e3 to your computer and use it in GitHub Desktop.
Setup script for a new MacOS machine
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
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew tap caskroom/cask | |
brew cask install google-chrome | |
brew cask install atom | |
apm install minimap file-icons todo-show | |
defaults write com.apple.dock static-only -bool TRUE; killall Dock | |
defaults write ~/Library/Preferences/.GlobalPreferences com.apple.swipescrolldirection -bool FALSE | |
git config --global user.name "Greg Brimble" | |
git config --global user.email [email protected] | |
git config --global core.editor atom | |
sudo easy_install pip | |
sudo pip install virtualenv | |
osascript -e 'tell app "System Events" to log out' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment