Created
August 18, 2019 20:28
-
-
Save DrSpeedy/e4a1e7d46bb1307ddec055dcea87292d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$USER" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="yellow"; fi | |
local return_code="%(?..%{$fg_bold[red]%}:( %?%{$reset_color%})" | |
PROMPT=' | |
[ %{$fg_bold[orange]%}%n%{$reset_color%}@%{$reset_color%}%{$fg_bold[red]%}%m%{$reset_color%} ]:%{${fg_bold[green]}%}%~%{$reset_color%}$(git_prompt_info) | |
%{${fg[$CARETCOLOR]}%}➜ %{${reset_color}%}' | |
RPS1='${return_code} %D - %*' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[magenta]%}^%{$reset_color%}%{$fg_bold[yellow]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%} ±" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ?" | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[red]%} ♥" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment