summaryrefslogtreecommitdiff
path: root/themes/essembeh.zsh-theme
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2013-04-23 21:27:51 -0700
committerRobby Russell <robby@planetargon.com>2013-04-23 21:27:51 -0700
commitb6ea876971b2270a2c73a07a6f6a337604132c6f (patch)
treeb95edef68a19b210e3cb9fb91ef8160c8d1058ee /themes/essembeh.zsh-theme
parentfd50759e39a8b0e27f56f1e56a8240de541d8271 (diff)
parent07838055a85bb751e15f072ba2fdc96e9b5ec92b (diff)
downloadzsh-b6ea876971b2270a2c73a07a6f6a337604132c6f.tar.gz
zsh-b6ea876971b2270a2c73a07a6f6a337604132c6f.tar.bz2
zsh-b6ea876971b2270a2c73a07a6f6a337604132c6f.zip
Merge pull request #690 from essembeh/master
Adding ~/.ssh/config parsing for host list and theme.
Diffstat (limited to 'themes/essembeh.zsh-theme')
-rw-r--r--themes/essembeh.zsh-theme31
1 files changed, 31 insertions, 0 deletions
diff --git a/themes/essembeh.zsh-theme b/themes/essembeh.zsh-theme
new file mode 100644
index 000000000..8c98ea1ed
--- /dev/null
+++ b/themes/essembeh.zsh-theme
@@ -0,0 +1,31 @@
+# Theme with full path names and hostname
+# Handy if you work on different servers all the time;
+
+
+local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})"
+
+function my_git_prompt_info() {
+ ref=$(git symbolic-ref HEAD 2> /dev/null) || return
+ GIT_STATUS=$(git_prompt_status)
+ [[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS"
+ echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX"
+}
+
+# Colored prompt
+ZSH_THEME_COLOR_USER="green"
+ZSH_THEME_COLOR_HOST="green"
+ZSH_THEME_COLOR_PWD="yellow"
+test -n "$SSH_CONNECTION" && ZSH_THEME_COLOR_USER="red" && ZSH_THEME_COLOR_HOST="red"
+test `id -u` = 0 && ZSH_THEME_COLOR_USER="magenta" && ZSH_THEME_COLOR_HOST="magenta"
+PROMPT='%{$fg_bold[$ZSH_THEME_COLOR_USER]%}%n@%{$fg_bold[$ZSH_THEME_COLOR_HOST]%}%M%{$reset_color%}:%{$fg_bold[$ZSH_THEME_COLOR_PWD]%}%~%{$reset_color%} $(my_git_prompt_info)%(!.#.$) '
+RPS1="${return_code}"
+
+ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}("
+ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}"
+ZSH_THEME_GIT_PROMPT_UNTRACKED="%%"
+ZSH_THEME_GIT_PROMPT_ADDED="+"
+ZSH_THEME_GIT_PROMPT_MODIFIED="*"
+ZSH_THEME_GIT_PROMPT_RENAMED="~"
+ZSH_THEME_GIT_PROMPT_DELETED="!"
+ZSH_THEME_GIT_PROMPT_UNMERGED="?"
+