diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-03-08 19:26:18 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-03-08 19:27:24 +0100 |
commit | d3df72b046aa2e2c98673a35491518ea34884517 (patch) | |
tree | be07f04a98d6bc640e6caaa219e7898712aac01a /.zsh/zshrc/00_colours | |
parent | 25aa705bc21c3941020361bfd78c8174df4cd46b (diff) |
add yellow as a variable
Diffstat (limited to '.zsh/zshrc/00_colours')
-rw-r--r-- | .zsh/zshrc/00_colours | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.zsh/zshrc/00_colours b/.zsh/zshrc/00_colours index 3091075..ad3847e 100644 --- a/.zsh/zshrc/00_colours +++ b/.zsh/zshrc/00_colours @@ -14,6 +14,7 @@ if autoload colors && colors 2>/dev/null ; then RED="%{${fg_bold[red]}%}" GREEN="%{${fg[green]}%}" CYAN="%{${fg[cyan]}%}" + YELLOW="%{${fg_bold[yellow]}%}" WHITE="%{${fg_bold[white]}%}" NO_COLOUR="%{${reset_color}%}" else @@ -21,6 +22,7 @@ else RED=$'%{\e[1;31m%}' GREEN=$'%{\e[1;32m%}' CYAN=$'%{\e[1;36m%}' + YELLOW=$'%{\e[1;33m%}' WHITE=$'%{\e[1;37m%}' NO_COLOUR=$'%{\e[0m%}' fi |