10 lines
494 B
Bash
10 lines
494 B
Bash
# user, host, full path, and time/date
|
|
# on two lines for easier vgrepping
|
|
# entry in a nice long thread on the Arch Linux forums: https://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
|
|
PROMPT=$'%b%{$fg[yellow]%}%n@%{$fg[magenta]%}%M %{$fg[green]%}%~
|
|
%{$fg_bold[white]%}%(!.#.$)%{$reset_color%} '
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[blue]%}"
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%} %{$fg[red]%}X"
|
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}"
|