diff options
author | Dallas Reedy <code@dallasreedy.com> | 2010-03-17 11:25:17 -0700 |
---|---|---|
committer | Dallas Reedy <code@dallasreedy.com> | 2010-03-17 11:25:17 -0700 |
commit | f9abe041e2b70217b0d2f5519a51a57854b49857 (patch) | |
tree | 591a648a3d903ca25197feca9dcbeaa710bda37e | |
parent | be66fe9d7aab5cd1603a6e86d67b792ac9f5e6f5 (diff) | |
download | zsh-f9abe041e2b70217b0d2f5519a51a57854b49857.tar.gz zsh-f9abe041e2b70217b0d2f5519a51a57854b49857.tar.bz2 zsh-f9abe041e2b70217b0d2f5519a51a57854b49857.zip |
added my personal theme: the dallas them
-rw-r--r-- | themes/dallas.zsh-theme | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/dallas.zsh-theme b/themes/dallas.zsh-theme new file mode 100644 index 000000000..10e019be0 --- /dev/null +++ b/themes/dallas.zsh-theme @@ -0,0 +1,14 @@ +# Personalized! +# [red][normal][purple][yellow][normal] +# dallas@lappy ~/Sites % +# PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% " +# PROMPT="{white}\{{yellow}{time}{white}\}{green}{host}{white}:{cyan}{pwd} {red,bold}{user}{white}%{normal} " + +DALLAS_CURRENT_TIME_="%{$fg[white]%}{%{$fg[yellow]%}%T%{$fg[white]%}}%{$reset_color%}" +DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}" +DALLAS_CURRENT_MACH_="%{$fg[green]%}%m%{$fg[white]%}:%{$reset_color%}" +DALLAS_CURRENT_LOCA_="%{$fg[cyan]%}%~%{$reset_color%}" +DALLAS_CURRENT_USER_="%{$fg[red]%}%n%{$reset_color%}" +DALLAS_PROMPT_CHAR_="%{$fg[white]%}%%%{$reset_color%}" + +PROMPT="$DALLAS_CURRENT_TIME_$DALLAS_CURRENT_RUBY_$DALLAS_CURRENT_MACH_$DALLAS_CURRENT_LOCA_ $DALLAS_CURRENT_USER_$DALLAS_PROMPT_CHAR_ " |