Created
March 15, 2019 19:05
-
-
Save tehmaspc/aebc755429885612abdaf25610204e5d to your computer and use it in GitHub Desktop.
rachel.zsh-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
setopt nocorrect | |
ZSH_THEME_GIT_PROMPT_PREFIX="[%{$fg[yellow]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}]" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}*%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%}?%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
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]%} ✭" | |
ZSH_THEME_GIT_PROMPT_STATUS= | |
# Right prompt template | |
# RPROMPT='${return_status}$(git_prompt_status)%{$reset_color%}' | |
# Left prompt template | |
PROMPT='[%{${fg[red]}%}%*%{$reset_color%}][%{${fg[magenta]}%}%~%{$reset_color%}][%{${fg[green]}%}%n@%m%{$reset_color%}]$ZSH_THEME_GIT_PROMPT_PREFIX$(git_current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX ${return_status}$(git_prompt_status)%{$reset_color%} | |
%{${fg[$CARETCOLOR]}%}%%%{${reset_color}%} ' | |
# Colors for Directory Listing | |
LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=33:so=01;35:bd=33;01:cd=33;01:or=01;05;37;41:mi=01;37;41:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:' | |
LSCOLORS='ExGxFxdxCxDxDxcxcxxCxc' | |
CLICOLOR=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment