citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

config (564B)


      1 export TODO_DIR="${TODO_DIR:-"$HOME/docs/todo"}"
      2 export TODO_FILE="${TODO_FILE:-$TODO_DIR/todo.txt}"
      3 export DONE_FILE="$TODO_DIR/done.txt"
      4 export REPORT_FILE="$TODO_DIR/report.txt"
      5 
      6 export PRI_A=$RED        # color for A priority
      7 export PRI_B=$YELLOW         # color for B priority
      8 export PRI_C=$LIGHT_GREEN    # color for C priority
      9 
     10 # There is highlighting for tasks that have been done,
     11 # but haven't been archived yet.
     12 #
     13 export COLOR_DONE=$GREEN
     14 
     15 export COLOR_PROJECT=$BLUE
     16 export COLOR_CONTEXT=$GREEN
     17 export COLOR_DATE=$PURPLE
     18 export COLOR_NUMBER=$LIGHT_GREY