A collection of dotfiles to help setting up development environment. Pros and cons of dotfiles could be found here
Follow this step-by-step installation.
Install XCode through the Mac App Store.
Run:
xcode-select --install
Clone this repository to your $HOME directory
mkdir $HOME/dotfiles
git clone git://github.com/logius/dotfiles.git $HOME/dotfiles
Initialize and/or update the submodules
cd $HOME/dotfiles && git submodule init && \
git submodule update --recursive
Next, install Homebrew using the following command.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
After installing Homebrew, ensure permissions are correct by running the following.
sudo chown -R "$USER" /usr/local
brew update
brew bundle --file=Brewfile
Hook everything up by running the install
script.
./install
chmod +x .osx
./.osx
Set ZSH as the default shell:
chsh -s /bin/zsh
ruby-install ruby [VERSION] ~/.rubies/ruby-[VERSION]