curl -sL https://raw.githubusercontent.com/holser/dotfiles/master/configure_osx.sh | /bin/bash
curl -sL https://raw.githubusercontent.com/holser/dotfiles/master/install_osx_software.sh | /bin/bash
curl -sL https://raw.githubusercontent.com/holser/dotfiles/master/install_vim.sh | /bin/bash
curl -sL https://raw.githubusercontent.com/holser/dotfiles/master/install_zsh.sh | /bin/zsh
To launch tmux by default add the following lines into .bashrc
if [[ "$TERM" != "screen-256color" ]]; then
tmux -2 attach-session -t "$USER" || tmux -2 new-session -s "$USER"
exit
fi