Created
January 18, 2016 10:37
-
-
Save jancuk/7c993d966c388c88be9b to your computer and use it in GitHub Desktop.
install
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
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew install rbenv ruby-build | |
| echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile | |
| source ~/.bash_profile | |
| rbenv install 2.2.3 | |
| git config --global color.ui true | |
| git config --global user.name "YOUR NAME" | |
| git config --global user.email "YOUR@EMAIL.com" | |
| ssh-keygen -t rsa -C "YOUR@EMAIL.com" | |
| brew install postgresql | |
| # To have launchd start postgresql at login: | |
| ln -sfv /usr/local/opt/postgresql/*plist ~/Library/LaunchAgents | |
| # Then to load postgresql now: | |
| launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist | |
| brew install mysql | |
| # To have launchd start mysql at login: | |
| ln -sfv /usr/local/opt/mysql/*plist ~/Library/LaunchAgents | |
| # Then to load mysql now: | |
| launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist | |
| brew install zsh | |
| chsh -s /usr/local/bin/zsh | |
| # oh-my-zsh | |
| sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| # tmux | |
| brew install tmux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment