af-magic.zsh-theme 1007 Bytes
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
14
15
#
# 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
16
# primary prompt
17
18
19
20
21
22
23
24
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
25
# color vars
26
27
28
eval my_gray='$FG[237]'
eval my_orange='$FG[214]'

Andy Fleming's avatar
Andy Fleming committed
29
# right prompt
LFDM's avatar
LFDM committed
30
RPROMPT='$(virtualenv_prompt_info)$my_gray%n@%m%{$reset_color%}%'
31

Andy Fleming's avatar
Andy Fleming committed
32
# git settings
33
34
35
36
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%}"