af-magic.zsh-theme 1.08 KB
Newer Older
1
2
3
4
# af-magic.zsh-theme
#
# Author: Andy Fleming
# URL: http://andyfleming.com/
Andy Fleming's avatar
Andy Fleming committed
5
6
# Repo: https://github.com/andyfleming/oh-my-zsh
# Direct Link: https://github.com/andyfleming/oh-my-zsh/blob/master/themes/af-magic.zsh-theme
7
8
9
10
11
12
13
#
# Created on:		June 19, 2012
# Last modified on:	June 20, 2012

if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"

Andy Fleming's avatar
Andy Fleming committed
14
# primary prompt
15
16
17
18
19
20
21
22
PROMPT='$FG[237]------------------------------------------------------------%{$reset_color%}
$FG[032]%~\
$(git_prompt_info) \
$FG[105]%(!.#.»)%{$reset_color%} '
PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
RPS1='${return_code}'


Andy Fleming's avatar
Andy Fleming committed
23
# color vars
24
25
26
eval my_gray='$FG[237]'
eval my_orange='$FG[214]'

Andy Fleming's avatar
Andy Fleming committed
27
# right prompt
Andy Fleming's avatar
Andy Fleming committed
28
if type "virtualenv_prompt_info" > /dev/null
29
30
31
32
33
then
	RPROMPT='$(virtualenv_prompt_info)$my_gray%n@%m%{$reset_color%}%'
else
	RPROMPT='$my_gray%n@%m%{$reset_color%}%'
fi
34

Andy Fleming's avatar
Andy Fleming committed
35
# git settings
36
37
38
39
ZSH_THEME_GIT_PROMPT_PREFIX="$FG[075](branch:"
ZSH_THEME_GIT_PROMPT_CLEAN=""
ZSH_THEME_GIT_PROMPT_DIRTY="$my_orange*%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="$FG[075])%{$reset_color%}"