Instalar iTerm2 disponible en este link
Instalar oh-my-zsh con el siguiente comando:
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Modifica el archivo ~/.zshrc
para personalizar tu terminal.
Configura el tema con la variable ZSH_THEME
. Ve los temas disponibles aquí
Yo ocupo el tema Powerlevel9k, que se instala facilmente con el siguiente comando:
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
Modifica la variable ZSH_THEME
en archivo ~/.zshrc
de la siguiente forma:
ZSH_THEME="powerlevel9k/powerlevel9k"
Y agrega las siguientes variables para configurar el tema. A mi me gusta mostrar el directorio actual y la información de Git del lado izquierdo:
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=()
Powerline9k requiere de fuentes especiales para funcionar correctamente. Instala las fuentes en Mac siguiendo las instrucciones en este repo
Para tener auto sugerencias y resaltado de sintaxis ejecuta los siguientes comandos:
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
Y modifica la variable plugins
en el archivo ~/.zshrc
:
plugins=(
git
zsh-autosuggestions
zsh-syntax-highlighting
)