Created
October 18, 2013 23:28
-
-
Save gosuri/7049753 to your computer and use it in GitHub Desktop.
Custom Sorin Theme
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
| # ------------------------------------------------------------------------------ | |
| # FILE: sorin-custom.zsh-theme | |
| # DESCRIPTION: oh-my-zsh theme file. | |
| # AUTHOR: Sorin Ionescu ([email protected]) | |
| # VERSION: 1.0.2 | |
| # SCREENSHOT: http://i.imgur.com/aipDQ.png | |
| # ------------------------------------------------------------------------------ | |
| local prefix="%{$fg[red]%}$USER@$(hostname)" | |
| 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='${prefix} %{$fg[cyan]%}%c$(git_prompt_info) %(!.%{$fg_bold[red]%}#.%{$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