-
-
Save nachbarshund/a7b614f4b2fa5a6641a7 to your computer and use it in GitHub Desktop.
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
# install a new Mac | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Install services | |
brew install node memcached redis mysql caskroom/cask/brew-cask | |
# install tools | |
brew cask install dropbox vagrant vagrant-manager virtualbox gpgtools iterm2 | |
brew tap caskroom/versions | |
# install general apps | |
brew cask install google-chrome firefox macdown skype teamviewer goofy tunnelblick hyperswitch | |
# install dev apps | |
brew cask install rdm sequel-pro cyberduck keka cakebrew sublime-text sourcetree sshfs | |
# missing apps: 3hub twitter reeder wunderlist pocket affinity designer | |
# install npm modules | |
npm i -g node-dev grunt-cli | |
# | |
# NPM Config | |
# | |
ln -s ~/Dropbox/System/NPM/.npmrc ~/.npmrc | |
# | |
# Sublime Text 3 settings | |
# | |
# Remove default folder | |
$ cd ~/Library/Application Support/Sublime\ Text\ 3 | |
$ rm -rf Packages/ | |
$ rm -rf Installed\ Packages/ | |
# Create symbolic links | |
$ ln -s ~/Dropbox/System/Sublime\ Text\ 3/Packages/ Packages | |
$ ln -s ~/Dropbox/System/Sublime\ Text\ 3/Installed\ Packages/ Installed\ Packages | |
# Create shortcut to open via sublime . | |
$ ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment