Created
March 5, 2012 16:31
-
-
Save miio/1979159 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
#show hidden file | |
defaults write com.apple.finder AppleShowAllFiles -boolean true | |
killall Finder | |
#install homebrew ( for mac package system ) | |
ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)" | |
#install base utils | |
brew install wget | |
#editor | |
brew install vim | |
#install git and git-browser tig | |
brew install git | |
brew install tig | |
#setup my-rsakey | |
ssh-keygen -t rsa | |
#install my dotfiles | |
git clone [email protected]:miio/dotfiles.git | |
#setup symbolic links | |
ln -s ~/dotfiles/.vim ~/.vim | |
ln -s ~/dotfiles/.vimrc ~/.vimrc | |
ln -s ~/dotfiles/.zsh ~/.zsh | |
ln -s ~/dotfiles/.zshrc ~/.zshrc | |
#install rbenv | |
brew install rbenv | |
#install zsh | |
brew install zsh | |
chsh -s /binzsh | |
brew install imagemagick --disable-openmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment