Last active
December 14, 2016 13:15
-
-
Save geeknam/d382406f634c114a0c2cc2deb3b06a9a to your computer and use it in GitHub Desktop.
Mac setup
This file contains 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
#!/bin/bash | |
# Python stuff | |
sudo easy_install pip | |
sudo pip install virtualenvwrapper --ignore-installed six | |
# Sublime cli | |
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime | |
# Brew and stuff | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew install git | |
brew install tmux | |
# tmux copy-pipe for mac | |
brew install reattach-to-user-namespace | |
# Zsh and Oh-My-Zsh | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# Tmux conf | |
curl -o ~/.tmux.conf https://gist.githubusercontent.com/geeknam/d5c409b4ae5127a464c3/raw/541c3eb1bdbd6f3e38295c459dbc608153a4e417/.tmux.conf | |
# Oh-my-zsh .zshrc conf | |
curl -o ~/.zshrc https://gist.githubusercontent.com/geeknam/4423298046c4383d36a91c404ff049b1/raw/b68e58d1dae1285d9d9bc570c8ed93a7c8e9acc1/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment