Created
June 2, 2017 00:17
-
-
Save cesarvargas00/88a69b33e163d9f918351f3632d65fd7 to your computer and use it in GitHub Desktop.
New computer bash script
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
#installs homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
#install zshell | |
brew install zsh pyenv | |
sudo dscl . -create /Users/$USER UserShell /usr/local/bin/zsh | |
#install some apps | |
brew cask install flycut spectacle google-chrome spotify skype slack sublime-text | |
#install some personal stuff on .zshrc | |
curl -L https://goo.gl/IRIem8 >> ~/.zshrc | |
#install prezto | |
git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto" | |
echo 'source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"' >> ~/.zshrc | |
#install a few apps | |
brew cask install flycut spectacle google-chrome spotify skype slack sublime sublime-text battle-net |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment