Created
June 8, 2020 03:21
-
-
Save lonsty/1700feca333c128a1f2754779f6711be to your computer and use it in GitHub Desktop.
Edited Sorin theme for zsh
This file contains hidden or 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
# sorin.zsh-theme | |
# screenshot: https://i.imgur.com/aipDQ.png | |
if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then | |
MODE_INDICATOR="%{$fg_bold[red]%}❮%{$reset_color%}%{$fg[red]%}❮❮%{$reset_color%}" | |
local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}" | |
PROMPT='%{$fg[cyan]%}%d$(git_prompt_info) %(!.%{$fg_bold[red]%}#.%{$fg_bold[red]%}❯%{$fg_bold[blue]%}❯%{$fg_bold[green]%}❯)%{$reset_color%} ' | |
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[blue]%}git%{$reset_color%}:%{$fg[red]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
RPROMPT='${return_status}$(git_prompt_status)%{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" | |
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" | |
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" | |
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" | |
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" | |
else | |
MODE_INDICATOR="❮❮❮" | |
local return_status="%(?::⏎)" | |
PROMPT='%c$(git_prompt_info) %(!.#.❯) ' | |
ZSH_THEME_GIT_PROMPT_PREFIX=" git:" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="" | |
ZSH_THEME_GIT_PROMPT_DIRTY="" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
RPROMPT='${return_status}$(git_prompt_status)' | |
ZSH_THEME_GIT_PROMPT_ADDED=" ✚" | |
ZSH_THEME_GIT_PROMPT_MODIFIED=" ✹" | |
ZSH_THEME_GIT_PROMPT_DELETED=" ✖" | |
ZSH_THEME_GIT_PROMPT_RENAMED=" ➜" | |
ZSH_THEME_GIT_PROMPT_UNMERGED=" ═" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED=" ✭" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment