I'm trying to figure out why zsh's prompt looks like this:
(in text form):
\[\]\u\[\] at \[\]\h\[\] in \[\]\w\[\]$(__git_ps1) \[\]$(git_diff)\n\[\]($(date +'1:MikesMBP.local ')) \[\]$\[\]
I'd like it to list my pwd and username normally like it does in bash before calling zsh. Here's my .zshrc:
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt appendhistory autocd beep extendedglob nomatch notify
bindkey -v
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/Users/mike/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
This is just a standard config created when first starting zsh. I've tried both the built-in OS X zsh and homebrew's zsh and they produce the same error. Do you see something that would cause this?