iTerm2 with Solarized, Powerline Shell and Meslo Powerline Font
Profiles
->Advanced
->Semantic History
->Open with editor...
->TextMate
Install command line tools:
xcode-select --install
brew install zsh zsh-completions
chsh -s /bin/zsh
Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Enable plugins in ~/.zshrc
:
plugins=(
git
bundler
dotenv
osx
xcode
php
symfony
symfony2
brew
)
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
ba = branch -a
baf = branch -a --list "feature/*"
rh = reset --hard HEAD
cam = commit -am
pr = pull --rebase
fp = fetch --prune
ftp = fetch --tags --prune
[user]
name = <me>
email = <email>
Or execute lines below to add [user]
part:
git config --global user.name <me>
git config --global user.email <email>