diff options
author | Sergio Rafael Gianazza <sgianazza@gmail.com> | 2013-04-04 16:18:48 -0300 |
---|---|---|
committer | Sergio Rafael Gianazza <sgianazza@gmail.com> | 2013-04-04 16:18:48 -0300 |
commit | 0707bfce5386eb7ad83e6ad8d0b09358916eeb64 (patch) | |
tree | 047720c2b3fabcfc37d72ceb07216b9999455bc0 | |
parent | b8b241f630377aacefade327c94655cec96b002f (diff) | |
download | zsh-0707bfce5386eb7ad83e6ad8d0b09358916eeb64.tar.gz zsh-0707bfce5386eb7ad83e6ad8d0b09358916eeb64.tar.bz2 zsh-0707bfce5386eb7ad83e6ad8d0b09358916eeb64.zip |
New theme: Gianu Theme
I created a theme that I feel confortable with and want to share with
everyone.
The prompt format is: <user>@<host> <current_dir> (<git_status>)$
-rw-r--r-- | themes/gianu.zsh-theme | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/themes/gianu.zsh-theme b/themes/gianu.zsh-theme new file mode 100644 index 000000000..2eb4520ce --- /dev/null +++ b/themes/gianu.zsh-theme @@ -0,0 +1,11 @@ +# Oh-my-Zsh prompt created by gianu +# +# github.com/gianu +# sgianazza@gmail.com + +PROMPT='[%{$fg_bold[white]%}%n%{$reset_color%}@%{$fg_bold[red]%}%m%{$reset_color%} %{$fg[cyan]%}%c%{$reset_color%} %{$fg_bold[green]%}$(git_prompt_info)%{$reset_color%}]$ ' + +ZSH_THEME_GIT_PROMPT_PREFIX="(" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})" +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[yellow]%}✗%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}" |