ohmyzsh/themes/rprompt.zsh-theme
2011-09-13 20:36:57 -07:00

21 lines
866 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Right-prompt theme for minimum clutter by Chris Leishman <chris@leishman.org>
#
# See screenshot at http://ompldr.org/vOXE5Yw
local host='%{$fg[magenta]%}%m%{$reset_color%}'
local pwd='%{$fg[blue]%}%(4~|../|)%3~%{$reset_color%}'
local rvm='%{$fg[green]%}$(rvm-prompt i v g)%{$reset_color%}'
local jobs='%(1j|%{$fg[green]%}[%j]%{$reset_color%}|)'
local git_branch='$(git_prompt_status)%{$reset_color%}$(git_prompt_info)%{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX="%%%{$fg[green]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}✗%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN=""
PROMPT="${jobs}%# "
RPROMPT="${host}:${pwd}${git_branch}"
export LSCOLORS="exdxgxgxfxGxCxBxGxExDx"
export LS_COLORS="di=34:ln=33:so=36:pi=36:ex=35:bd=1:cd=1:su=1:sg=1:tw=1:ow=1:"
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}