Skip to content

Instantly share code, notes, and snippets.

@lunaroja
Last active November 29, 2018 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lunaroja/98f0c1feb93a9c1f34d10ee85f655d30 to your computer and use it in GitHub Desktop.
Save lunaroja/98f0c1feb93a9c1f34d10ee85f655d30 to your computer and use it in GitHub Desktop.
Quick Commands to setup a new computer
#!/bin/bash
defaults write com.apple.finder AppleShowAllFiles YES
## Xcode Tools
xcode-select --install
## [Setup oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
## [Homebrew](http://brew.sh/)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
## [NVM](https://github.com/creationix/nvm)
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
nvm install 8
## Install Main Apps
brew cask install slack
brew cask install dropbox
brew cask install google-chrome
brew cask install 1password
brew tap homebrew/cask-versions
brew cask install google-chrome-canary
brew cask install alfred
brew cask install iterm2
brew cask install visual-studio-code
brew cask install bettertouchtool
brew cask install flux
brew cask install nvalt
brew cask install taskpaper
brew cask install firefox
brew cask install github-desktop
brew cask install sketch
brew cask install kaleidoscope
brew cask install transmit
brew cask install sequel-pro
brew cask install imageoptim
brew cask install fontprep
brew tap laurent22/massren
brew install massren
## [Mackup](https://github.com/lra/mackup) Sync Appliation settings via Dropbox
brew install mackup
mackup restore
ln -s ~/Dropbox\ \(Personal\) ~/Dropbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment