summaryrefslogtreecommitdiff
path: root/themes/suvash.zsh-theme
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2011-12-14 22:03:27 -0800
committerRobby Russell <robby@planetargon.com>2011-12-14 22:03:27 -0800
commit220eccf0a9dac5cfb3c16e46829ab916d5c979c1 (patch)
tree741e285660b07e900abac0edc41388384a84db32 /themes/suvash.zsh-theme
parent9637d4ec2205b3a98b7c3b5d89372828346c45ff (diff)
parent8ca019f02a4dc718fe5fc8b1186108eb376360c9 (diff)
downloadzsh-220eccf0a9dac5cfb3c16e46829ab916d5c979c1.tar.gz
zsh-220eccf0a9dac5cfb3c16e46829ab916d5c979c1.tar.bz2
zsh-220eccf0a9dac5cfb3c16e46829ab916d5c979c1.zip
Merge pull request #741 from suvash/master
Added my own theme for submission
Diffstat (limited to 'themes/suvash.zsh-theme')
-rw-r--r--themes/suvash.zsh-theme23
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/suvash.zsh-theme b/themes/suvash.zsh-theme
new file mode 100644
index 000000000..f50657db2
--- /dev/null
+++ b/themes/suvash.zsh-theme
@@ -0,0 +1,23 @@
+function prompt_char {
+ git branch >/dev/null 2>/dev/null && echo '±' && return
+ hg root >/dev/null 2>/dev/null && echo 'Hg' && return
+ echo '○'
+}
+
+function virtualenv_info {
+ [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
+}
+
+function collapse_pwd {
+ echo $(pwd | sed -e "s,^$HOME,~,")
+}
+
+PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) using %{$reset_color%}%{$fg[red]%}$(~/.rvm/bin/rvm-prompt)%{$reset_color%}
+$(virtualenv_info)$(prompt_char) '
+
+
+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_UNTRACKED="%{$fg[green]%}?"
+ZSH_THEME_GIT_PROMPT_CLEAN=""