Annotation of todotxt/Text-Todo/t/todo.cfg, Revision 1.1
1.1 ! andrew 1: # === EDIT FILE LOCATIONS BELOW ===
! 2:
! 3: if [ ! -z $TODO_PROJECT ]; then
! 4: TODO_PROJECT=/${TODO_PROJECT}
! 5: fi
! 6:
! 7: # Your todo.txt directory
! 8: #export TODO_DIR="/Users/gina/Documents/todo"
! 9: #export TODO_DIR="C:/Documents and Settings/gina/My Documents"
! 10: #export TODO_DIR=${HOME}/public_html/todo${TODO_PROJECT}
! 11: export TODO_DIR=t/
! 12:
! 13: # Your todo/done/report.txt locations
! 14: export TODO_FILE="$TODO_DIR/todo1.txt"
! 15: export DONE_FILE="$TODO_DIR/done.txt"
! 16: export REPORT_FILE="$TODO_DIR/report.txt"
! 17: export TMP_FILE="$TODO_DIR/todo.tmp"
! 18:
! 19: # You can customize your actions directory location
! 20: #export TODO_ACTIONS_DIR="$HOME/.todo.actions.d"
! 21:
! 22: # == EDIT FILE LOCATIONS ABOVE ===
! 23:
! 24: # === COLOR MAP ===
! 25:
! 26: ## If you have re-mapped your color codes, you may need to
! 27: ## over-ride by uncommenting and editing these defaults.
! 28:
! 29: # export BLACK='\\033[0;30m'
! 30: # export RED='\\033[0;31m'
! 31: # export GREEN='\\033[0;32m'
! 32: # export BROWN='\\033[0;33m'
! 33: # export BLUE='\\033[0;34m'
! 34: # export PURPLE='\\033[0;35m'
! 35: # export CYAN='\\033[0;36m'
! 36: # export LIGHT_GREY='\\033[0;37m'
! 37: # export DARK_GREY='\\033[1;30m'
! 38: # export LIGHT_RED='\\033[1;31m'
! 39: # export LIGHT_GREEN='\\033[1;32m'
! 40: # export YELLOW='\\033[1;33m'
! 41: # export LIGHT_BLUE='\\033[1;34m'
! 42: # export LIGHT_PURPLE='\\033[1;35m'
! 43: # export LIGHT_CYAN='\\033[1;36m'
! 44: # export WHITE='\\033[1;37m'
! 45: # export DEFAULT='\\033[0m'
! 46:
! 47: # === PRIORITY COLORS ===
! 48:
! 49: ## Priorities can be any upper-case letter.
! 50: ## Colors are supported for the first three.
! 51: ## Uncomment and edit to override these defaults.
! 52:
! 53: # export PRI_A=$YELLOW # color for A priority
! 54: # export PRI_B=$GREEN # color for B priority
! 55: # export PRI_C=$LIGHT_BLUE # color for C priority
! 56: # export PRI_X=$WHITE # color for rest of them
! 57:
! 58: # === BEHAVIOR ===
! 59:
! 60: ## customize list output
! 61: #
! 62: # TODOTXT_SORT_COMMAND will filter after line numbers are
! 63: # inserted, but before colorization, and before hiding of
! 64: # priority, context, and project.
! 65: #
! 66: # export TODOTXT_SORT_COMMAND='env LC_COLLATE=C sort -f -k2'
! 67:
! 68: # TODOTXT_FINAL_FILTER will filter list output after colorization,
! 69: # priority hiding, context hiding, and project hiding. That is,
! 70: # just before the list output is displayed.
! 71: #
! 72: # export TODOTXT_FINAL_FILTER='cat'
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>