mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
20 lines
657 B
Bash
20 lines
657 B
Bash
# Hey ho - let's go!
|
|
|
|
# git settings
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}"
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX=" %{$reset_color%}"
|
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[yellow]%}⚡%{$reset_color%}"
|
|
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}"
|
|
|
|
# are you root? show me!
|
|
IAM=""
|
|
if [ "$UID" = "0" ]; then
|
|
IAM="%{$fg[red]%}root|%{$reset_color%}"
|
|
fi
|
|
|
|
SEPARATOR="%{$fg[red]%}|%{$fg[reset_color]%}"
|
|
|
|
PROMPT='%{$fg[yellow]%}$HOST$SEPARATOR$IAM%{$fg[cyan]%}%1~%{$reset_color%}$SEPARATOR$(git_prompt_info)%{$fg[cyan]%}%{$reset_color%} '
|
|
|
|
# ls colors, made with http://geoff.greer.fm/lscolors/
|
|
export LSCOLORS='Gxdxhxhxbxegedabagacad'
|