Created
November 22, 2022 06:03
-
-
Save rw3iss/016e8d982d827d5dae0149d79c22d6d2 to your computer and use it in GitHub Desktop.
rw3iss.zsh-theme
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
PROMPT='%{$fg_bold[green]%}%{$fg[cyan]%}%d %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="(" | |
ZSH_THEME_GIT_PROMPT_SUFFIX=")" | |
ZSH_THEME_GIT_PROMPT_DIRTY="" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
RPROMPT='$(git_prompt_status)%{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈" | |
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ✭" | |
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✗" | |
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➦" | |
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ✂" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%} ✱" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment