31 lines
849 B
Bash
31 lines
849 B
Bash
function spwd {
|
|
paths=(${(s:/:)PWD})
|
|
|
|
cur_path='/'
|
|
cur_short_path='/'
|
|
for directory in ${paths[@]}
|
|
do
|
|
cur_dir=''
|
|
for (( i=0; i<${#directory}; i++ )); do
|
|
cur_dir+="${directory:$i:1}"
|
|
matching=("$cur_path"/"$cur_dir"*/)
|
|
if [[ ${#matching[@]} -eq 1 ]]; then
|
|
break
|
|
fi
|
|
done
|
|
cur_short_path+="$cur_dir/"
|
|
cur_path+="$directory/"
|
|
done
|
|
|
|
printf %q "${cur_short_path: : -1}"
|
|
echo
|
|
}
|
|
|
|
indicator="$(hostname -s)"
|
|
local ret_status="%(?:%{$fg_bold[green]%}$indicator:%{$fg_bold[red]%}$indicator)"
|
|
PROMPT='${ret_status} %{$fg[cyan]%}$(spwd)%{$reset_color%} $(git_prompt_info)'
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}"
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗"
|
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
|