diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-08 14:11:34 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-08 14:11:34 +0000 |
commit | fdbb2c58e483fe6fb3bf0bf892c6a1f761c0fa50 (patch) | |
tree | 4e5b738553d028d776682cd5465b16e9a2875f58 | |
parent | 128096acf580799da3617dc16b4a5c69f65b6e4c (diff) |
parity with laptop and desktop todo.cfg files
-rw-r--r-- | todo.cfg | 59 |
1 files changed, 33 insertions, 26 deletions
@@ -2,7 +2,7 @@ # Your todo.txt directory (this should be an absolute path) #export TODO_DIR="/Users/gina/Documents/todo" -export TODO_DIR="/home/lemon/Documents/Notes/todo" +export TODO_DIR="/home/lemon/Documents/Notes/todo/" # Your todo/done/report.txt locations export TODO_FILE="$TODO_DIR/todo.txt" @@ -24,23 +24,23 @@ export REPORT_FILE="$TODO_DIR/report.txt" ## the defaults in the COLORS section below. Otherwise, todo.txt ## will still use the defaults! -# export BLACK='\\033[0;30m' -# export RED='\\033[0;31m' -# export GREEN='\\033[0;32m' -# export BROWN='\\033[0;33m' -# export BLUE='\\033[0;34m' -# export PURPLE='\\033[0;35m' -# export CYAN='\\033[0;36m' -# export LIGHT_GREY='\\033[0;37m' -# export DARK_GREY='\\033[1;30m' -# export LIGHT_RED='\\033[1;31m' -# export LIGHT_GREEN='\\033[1;32m' -# export YELLOW='\\033[1;33m' -# export LIGHT_BLUE='\\033[1;34m' -# export LIGHT_PURPLE='\\033[1;35m' -# export LIGHT_CYAN='\\033[1;36m' -# export WHITE='\\033[1;37m' -# export DEFAULT='\\033[0m' +export BLACK='\\033[0;30m' +export RED='\\033[0;31m' +export GREEN='\\033[0;32m' +export BROWN='\\033[0;33m' +export BLUE='\\033[0;34m' +export PURPLE='\\033[0;35m' +export CYAN='\\033[0;36m' +export LIGHT_GREY='\\033[0;37m' +export DARK_GREY='\\033[1;30m' +export LIGHT_RED='\\033[1;31m' +export LIGHT_GREEN='\\033[1;32m' +export YELLOW='\\033[1;33m' +export LIGHT_BLUE='\\033[1;34m' +export LIGHT_PURPLE='\\033[1;35m' +export LIGHT_CYAN='\\033[1;36m' +export WHITE='\\033[1;37m' +export DEFAULT='\\033[0m' # === COLORS === @@ -51,23 +51,23 @@ export REPORT_FILE="$TODO_DIR/report.txt" # Priorities can be any upper-case letter. # A,B,C are highlighted; you can add coloring for more. # -# export PRI_A=$YELLOW # color for A priority -# export PRI_B=$GREEN # color for B priority -# export PRI_C=$LIGHT_BLUE # color for C priority -# export PRI_D=... # define your own -# export PRI_X=$WHITE # color unless explicitly defined +export PRI_A=$YELLOW # color for A priority +export PRI_B=$GREEN # color for B priority +export PRI_C=$LIGHT_BLUE # color for C priority +export PRI_D=... # define your own +export PRI_X=$WHITE # color unless explicitly defined # There is highlighting for tasks that have been done, # but haven't been archived yet. # -# export COLOR_DONE=$LIGHT_GREY +export COLOR_DONE=$LIGHT_GREY # There is highlighting for projects, contexts, dates, and item numbers. # export COLOR_PROJECT=$RED -export COLOR_CONTEXT=$RED +export COLOR_CONTEXT=$PURPLE export COLOR_DATE=$BLUE -export COLOR_NUMBER=$LIGHT_GRAY +export COLOR_NUMBER=$LIGHT_GREY # There is highlighting for metadata key:value pairs e.g. # DUE:2006-08-01 or note:MYNOTE @@ -76,6 +76,13 @@ export COLOR_META=$CYAN # === BEHAVIOR === +## verbosity +# +# By default, additional information and confirmation of actions (like +# "TODO: 1 added") are printed. You can suppress this via 0 or add extra +# verbosity via 2. +# export TODOTXT_VERBOSE=1 + ## customize list output # # TODOTXT_SORT_COMMAND will filter after line numbers are |