export TODO_DIR=~/.todo

# Your todo/done/report.txt locations
### export TODO_FILE="$TODO_DIR/todo.txt"
### export DONE_FILE="$TODO_DIR/done.txt"
### export REPORT_FILE="$TODO_DIR/report.txt"

# Mabox's modification - allows multiple todo files
: ${TODO_FILE:-"$TODO_DIR/todo.txt"}; export TODO_FILE
: ${DONE_FILE:-"$TODO_DIR/done.txt"}; export DONE_FILE
: ${REPORT_FILE:-"$TODO_DIR/report.txt"}; export REPORT_FILE

# todo.txt configuration for Jgmenu highlighting. 
export BLACK='${color black}'
export RED='${color red}'
export GREEN='${color green}'
export BROWN='${color brown}'
export BLUE='${color blue}'
export PURPLE='${color purple}'
export CYAN='${color cyan}'
export LIGHT_GREY='${color LightGrey}'
export DARK_GREY='${color DarkGrey}'
export LIGHT_RED='${color LightRed}'
export LIGHT_GREEN='${color LightGreen}'
export YELLOW='${color yellow}'
export LIGHT_BLUE='${color LightBlue}'
export LIGHT_PURPLE='${color LightPurple}'
export LIGHT_CYAN='${color LightCyan}'
export WHITE='${color white}'
export DEFAULT=" </span>"

export PRI_A=''        # color for A priority
export PRI_B=''        # color for B priority
export PRI_C=''    # color for C priority
#export PRI_D=...            # define your own
export PRI_X=''         # color unless explicitly defined

# There is highlighting for tasks that have been done,
# but haven't been archived yet.
#
export COLOR_DONE=''

# There is highlighting for projects, contexts, dates, and item numbers.
#
export COLOR_PROJECT="<span bgcolor='#CCCCCC' fgcolor='red'> "
export COLOR_CONTEXT="<span fgcolor='green' bgcolor='#EEEEEE'> "
export COLOR_DATE="<span fgcolor='grey' size='small'>"
export COLOR_NUMBER="<span fgcolor='grey' size='small'>"

# There is highlighting for metadata key:value pairs e.g.
# DUE:2006-08-01 or note:MYNOTE
#
export COLOR_META="<span fgcolor='gray' style='italic'>"
