Add super clean, elegant theme (feross)

SCREENSHOTS:

Dark terminal theme: http://imgur.com/wzZO6,rxHHO#0
Light terminal theme: http://imgur.com/wzZO6,rxHHO#1
This commit is contained in:
Feross Aboukhadijeh 2012-12-23 20:24:47 -08:00
commit 1b9b8e7c1a

17
themes/feross.zsh-theme Normal file
View file

@ -0,0 +1,17 @@
local user='%B%m %b%{$reset_color%}'
local pwd='%B%{$fg[blue]%}%~%b%{$reset_color%}'
local git='%B$(git_prompt_info)$(git_prompt_status)%b%{$reset_color%}'
PROMPT="${user}${pwd}${git}%B $ %b%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%} "
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY=""
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]%} ✭"