diff options
author | Takashi Yoshida <takashi@takashiyoshida.org> | 2010-05-31 00:56:26 +0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2010-06-05 23:24:21 +0800 |
commit | 47e9914529e0807681c3c6dd2c11187ee67f0326 (patch) | |
tree | 594c1c5ab40d74ef28b92ff2c982febd645c71c1 | |
parent | 6efc79c74edbc8cfbb5cdc438332eeae9b950508 (diff) | |
download | zsh-47e9914529e0807681c3c6dd2c11187ee67f0326.tar.gz zsh-47e9914529e0807681c3c6dd2c11187ee67f0326.tar.bz2 zsh-47e9914529e0807681c3c6dd2c11187ee67f0326.zip |
Added my own theme.
-rw-r--r-- | themes/takashiyoshida.zsh-theme | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/themes/takashiyoshida.zsh-theme b/themes/takashiyoshida.zsh-theme new file mode 100644 index 000000000..419a8cf3f --- /dev/null +++ b/themes/takashiyoshida.zsh-theme @@ -0,0 +1,27 @@ +# +# PROMPT +# +PROMPT_BRACKET_BEGIN='%{$fg_bold[white]%}[' +PROMPT_HOST='%{$fg_bold[cyan]%}%m' +PROMPT_SEPARATOR='%{$reset_color%}:' +PROMPT_DIR='%{$fg_bold[yellow]%}%c' +PROMPT_BRACKET_END='%{$fg_bold[white]%}]' + +PROMPT_USER='%{$fg_bold[white]%}%n' +PROMPT_SIGN='%{$reset_color%}%#' + +GIT_PROMPT_INFO='$(git_prompt_info)' + +# My current prompt looks like: +# [host:current_dir] (git_prompt_info) +# [username]% +PROMPT="${PROMPT_BRACKET_BEGIN}${PROMPT_HOST}${PROMPT_SEPARATOR}${PROMPT_DIR}${PROMPT_BRACKET_END}${GIT_PROMPT_INFO} +${PROMPT_BRACKET_BEGIN}${PROMPT_USER}${PROMPT_BRACKET_END}${PROMPT_SIGN} " + +# +# Git repository +# +ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!" +ZSH_THEME_GIT_PROMPT_CLEAN='' |