commit d6809d29ace295ec5d98b26498b80278bfbe748e parent 7257bc4808ef6482b130b8e0d2d26ee4d3a1d860 Author: William Casarin <jb55@jb55.com> Date: Mon, 4 Jan 2021 08:20:41 -0800 add todo.sh config Diffstat:
A | dotfiles/.todo/config | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/dotfiles/.todo/config b/dotfiles/.todo/config @@ -0,0 +1,18 @@ +export TODO_DIR="$HOME/docs/todo" +export TODO_FILE="$TODO_DIR/todo.txt" +export DONE_FILE="$TODO_DIR/done.txt" +export REPORT_FILE="$TODO_DIR/report.txt" + +export PRI_A=$RED # color for A priority +export PRI_B=$YELLOW # color for B priority +export PRI_C=$LIGHT_GREEN # color for C priority + +# There is highlighting for tasks that have been done, +# but haven't been archived yet. +# +export COLOR_DONE=$GREEN + +export COLOR_PROJECT=$BLUE +export COLOR_CONTEXT=$GREEN +export COLOR_DATE=$PURPLE +export COLOR_NUMBER=$LIGHT_GREY