diff options
author | Tom Kirchner <tjkirch+github@gmail.com> | 2011-03-15 00:41:51 +0000 |
---|---|---|
committer | Tom Kirchner <tjkirch+github@gmail.com> | 2011-03-15 00:41:51 +0000 |
commit | 6654d5dd9982fb2f67c49e87b8b242c3964537b7 (patch) | |
tree | bf8b314d6fc86001ac8724c88cd614e695552b38 /themes | |
parent | 746a10368acd38d80cd35c2b97202a9187d58a05 (diff) | |
download | zsh-6654d5dd9982fb2f67c49e87b8b242c3964537b7.tar.gz zsh-6654d5dd9982fb2f67c49e87b8b242c3964537b7.tar.bz2 zsh-6654d5dd9982fb2f67c49e87b8b242c3964537b7.zip |
Make personal theme based on dst
Diffstat (limited to 'themes')
-rw-r--r-- | themes/tjkirch.zsh-theme | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/themes/tjkirch.zsh-theme b/themes/tjkirch.zsh-theme new file mode 100644 index 000000000..3e2539d57 --- /dev/null +++ b/themes/tjkirch.zsh-theme @@ -0,0 +1,16 @@ + +ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[green]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}!" +ZSH_THEME_GIT_PROMPT_CLEAN="" + +function prompt_char { + if [ $UID -eq 0 ]; then echo "%{$fg[red]%}#%{$reset_color%}"; else echo $; fi +} + +PROMPT='%(?, ,%{$fg[red]%}FAIL%{$reset_color%} +) +%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}%m%{$reset_color%}: %{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info) +%_ $(prompt_char) ' + +RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}' |