Table of Contents
1 NOTE: clone everything to $HOME dir
2 Update zsh
2.1 From this SO post
# check the zsh info: brew info zsh # install zsh: brew install --without-etcdir zsh # add shell path: sudo vim /etc/shells # add the following line into the very end of the file(/etc/shells): /usr/local/bin/zsh # change default shell: chsh -s /usr/local/bin/zsh
3 Restart Shell
4 Setup Prezto
4.1 From the docs
# Clone Prezto:
git clone --recursive https://github.com/jks15063/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
# cd to new dir:
cd .zprezto
# Create a new Zsh configuration by copying the Zsh configuration files provided:
setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done
5 Restart Shell
6 Install GNU coreutils
6.1 GNU version of ls is needed to work with dircolors
brew install coreutils
7 Fonts
git clone git@github.com:powerline/fonts.git cd fonts ./install.sh
7.1 Terminal -> prefrences -> profiles -> import -> change font
7.2 Set font in terminal to DejaVu Sans Mono for Powerline, 18 pt.
7.2.1 Or some other font
7.2.2 Or some other size
8 Solarized
git clone git@github.com:seebi/dircolors-solarized.git git clone git@github.com:tomislav/osx-terminal.app-colors-solarized.git