ys.zsh-theme 1.07 KB
Newer Older
y.s's avatar
y.s committed
1
# Clean, simple, compatible and meaningful.
2
3
# Tested on Linux, Unix and Windows under ANSI colors.
# It is recommended to use with a dark background and the font Inconsolata.
y.s's avatar
y.s committed
4
# Colors: black, red, green, yellow, *blue, magenta, cyan, and white.
5
6
7
# 
# http://ysmood.org/wp/2013/03/my-ys-terminal-theme/
# Mar 2013 ys
y.s's avatar
y.s committed
8

9
# Machine name.
y.s's avatar
y.s committed
10
function box_name {
11
    [ -f ~/.box-name ] && cat ~/.box-name || hostname
y.s's avatar
y.s committed
12
13
}

14
# Directory info.
y.s's avatar
y.s committed
15
16
local current_dir='${PWD/#$HOME/~}'

17
18
# Git info.
local git_info='$(git_prompt_info)'
y.s's avatar
y.s committed
19
20
21
22
23
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[white]%}on%{$reset_color%} git:%{$fg[cyan]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}x"
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}o"

24
# Prompt format: \n # USER at MACHINE in DIRECTORY on git:BRANCH STATE [TIME] \n $ 
y.s's avatar
y.s committed
25
PROMPT="
26
27
28
29
30
31
32
33
34
%{$terminfo[bold]$fg[blue]%}#%{$reset_color%} \
%{$fg[cyan]%}%n \
%{$fg[white]%}at \
%{$fg[green]%}$(box_name) \
%{$fg[white]%}in \
%{$terminfo[bold]$fg[yellow]%}${current_dir}%{$reset_color%}\
${git_info} \
%{$fg[white]%}[%*]
%{$terminfo[bold]$fg[red]%}$ %{$reset_color%}"