From 494c8d85712d74742ad8e3b6fcb7fe60a3d3551c Mon Sep 17 00:00:00 2001 From: Ryan Bright Date: Sun, 13 Nov 2011 11:45:49 -0500 Subject: [PATCH] Added rbright theme to oh-my-zsh --- themes/rbright.zsh-theme | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 themes/rbright.zsh-theme diff --git a/themes/rbright.zsh-theme b/themes/rbright.zsh-theme new file mode 100644 index 000000000..f78e5cd51 --- /dev/null +++ b/themes/rbright.zsh-theme @@ -0,0 +1,14 @@ +#!/usr/bin/env zsh + +local time_of_day='%{$fg_bold[blue]%}%T%{$reset_color%}' +local user_host='%{$fg_bold[green]%}%n@%m%{$reset_color%}' +local current_dir='%{$fg_bold[cyan]%}%c%{$reset_color%}' +local git_prompt='$(git_prompt_info)' + +PROMPT="${time_of_day} ${user_host}:${current_dir} ${git_prompt} +%# " + +ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[magenta]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg_bold[yellow]%}⚡" +ZSH_THEME_GIT_PROMPT_CLEAN=""