]> git.alrj.org Git - zsh.d.git/blob - S11_colors
Add a wrapper for mc to stay in current directory upon exit
[zsh.d.git] / S11_colors
1 #! /usr/bin/zsh
2
3 #
4 # Prepare the colors for the prompt
5 #
6 C_NO="%{$reset_color%}"
7
8 # normal
9 C_CYAN="%{${fg[cyan]}%}"
10 C_WHITE="%{${fg[white]}%}"
11 C_MAGENTA="%{${fg[magenta]}%}"
12 C_GREEN="%{${fg[green]}%}"
13
14 # bright/bold
15 C_BCYAN="%{${fg_bold[cyan]}%}"
16 C_BYELLOW="%{${fg_bold[yellow]}%}"
17 C_BRED="%{${fg_bold[red]}%}"
18 C_MAGENTA="%{${fg_bold[magenta]}%}"
19 C_BGREEN="%{${fg_bold[green]}%}"