2021-01-28 23:23:03 +00:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
2021-03-23 20:18:34 +00:00
|
|
|
# hide EOL sign ('%')
|
|
|
|
export PROMPT_EOL_MARK=""
|
|
|
|
|
2021-01-28 23:23:03 +00:00
|
|
|
# Color definition
|
|
|
|
GRAY="%F{237}"
|
|
|
|
RED="%F{196}"
|
|
|
|
ORANGE="%F{214}"
|
|
|
|
BLUE="%F{032}"
|
|
|
|
LBLUE="%F{075}"
|
|
|
|
PURPLE="%F{105}"
|
|
|
|
RESET="%f"
|
|
|
|
|
|
|
|
git_prompt() {
|
2021-01-28 23:39:51 +00:00
|
|
|
ref=$(command git symbolic-ref HEAD 2> /dev/null) || ref=$(command git rev-parse --short HEAD 2> /dev/null) || return 0
|
2021-01-29 09:38:37 +00:00
|
|
|
echo -n " $ORANGE${ref#refs/heads/}"
|
2021-01-28 23:23:03 +00:00
|
|
|
|
|
|
|
if [ ! -z "$(git status --short)" ]; then
|
2021-01-28 23:39:51 +00:00
|
|
|
echo "$RED+"
|
2021-01-28 23:23:03 +00:00
|
|
|
fi
|
|
|
|
}
|
2021-01-28 23:39:51 +00:00
|
|
|
|
2021-03-23 20:18:34 +00:00
|
|
|
|
|
|
|
setopt promptsubst # enable command substitution in prompt
|
2021-01-28 23:23:03 +00:00
|
|
|
|
|
|
|
# Primary Prompt
|
|
|
|
[ "$EUID" -eq 0 ] && PS1="$RED%n@%m$RESET" || PS1="$GRAY%n@%m$RESET" # user@machine
|
|
|
|
PS1+=" $BLUE%~" # Working directory
|
2021-01-29 09:38:37 +00:00
|
|
|
PS1+="\$(git_prompt)"
|
2021-01-28 23:23:03 +00:00
|
|
|
PS1+=" $PURPLE%(!.#.»)$RESET " # Final symbol (# or »)
|
|
|
|
|
|
|
|
# Next line prompt
|
|
|
|
PS2="$RED\ $RESET"
|
|
|
|
|
|
|
|
# Right side prompt (on error)
|
|
|
|
RPS1="%(?..$RED%? ↵$RESET)"
|