Skip to content

Instantly share code, notes, and snippets.

@miio
Created March 5, 2012 16:31
Show Gist options
  • Save miio/1979159 to your computer and use it in GitHub Desktop.
Save miio/1979159 to your computer and use it in GitHub Desktop.
#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