fino.zsh-theme 1.38 KB
Newer Older
Max Masnick's avatar
Max Masnick committed
1
2
3
# Fino theme by Max Masnick (http://max.masnick.me)

# Use with a dark background and 256-color terminal!
4
# Meant for people with rbenv and git. Tested only on OS X 10.7.
Max Masnick's avatar
Max Masnick committed
5
6
7
8
9
10
11
12
13
14
15

# You can set your computer name in the ~/.box-name file if you want.

# Borrowing shamelessly from these oh-my-zsh themes:
#   bira
#   robbyrussell
#
# Also borrowing from http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/


function prompt_char {
16
17
  git branch >/dev/null 2>/dev/null && echo "±" && return
  echo '○'
Max Masnick's avatar
Max Masnick committed
18
19
20
21
22
23
}

function box_name {
    [ -f ~/.box-name ] && cat ~/.box-name || hostname -s
}

24
local ruby_env=''
25
if which rvm-prompt &> /dev/null; then
26
  ruby_env=' ‹$(rvm-prompt i v g)›%{$reset_color%}'
27
28
else
  if which rbenv &> /dev/null; then
29
    ruby_env=' ‹$(rbenv version-name)›%{$reset_color%}'
30
31
  fi
fi
Max Masnick's avatar
Max Masnick committed
32

Max Masnick's avatar
Max Masnick committed
33
34
local current_dir='${PWD/#$HOME/~}'
local git_info='$(git_prompt_info)'
35
local prompt_char='$(prompt_char)'
Max Masnick's avatar
Max Masnick committed
36
37


38
PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}${current_dir}%{$reset_color%}${git_info} %{$FG[239]%}using%{$FG[243]%}${ruby_env}
39
╰─${prompt_char} "
Max Masnick's avatar
Max Masnick committed
40
41
42
43
44

ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$FG[202]%}✘✘✘"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$FG[040]%}✔"