diff options
author | Alen <alen@dotfiles.xyz> | 2023-09-13 01:52:41 +0400 |
---|---|---|
committer | Alen <alen@dotfiles.xyz> | 2023-09-13 02:07:18 +0400 |
commit | d00c86a97392043d66574b8c903f58c04db301ca (patch) | |
tree | 79683f6f2403ef4f6bd7b3bc0a912f494b25e3b2 /dot_todo.cfg.tmpl | |
parent | 83228d56450e8d2ae26fa8d1e3e399914fcc4f19 (diff) |
Add todo.txt config
Diffstat (limited to 'dot_todo.cfg.tmpl')
-rw-r--r-- | dot_todo.cfg.tmpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dot_todo.cfg.tmpl b/dot_todo.cfg.tmpl new file mode 100644 index 0000000..2b5125c --- /dev/null +++ b/dot_todo.cfg.tmpl @@ -0,0 +1,15 @@ +export TODO_DIR="${HOME}/.local/share/todo" +export TODO_FILE="${TODO_DIR}/todo.txt" +export DONE_FILE="${TODO_DIR}/done.txt" +export REPORT_FILE="${TODO_DIR}/report.txt" +export TODO_ACTIONS_DIR="$HOME/.config/todo.actions.d" +export PRI_A=${YELLOW} +export PRI_B=${GREEN} +export PRI_C=${LIGHT_BLUE} +export COLOR_DONE=${LIGHT_GREY} +export COLOR_PROJECT=${RED} +export COLOR_CONTEXT=${RED} +export COLOR_DATE=${BLUE} +export COLOR_NUMBER=${GRAY} +export COLOR_META=${CYAN} +export TODOTXT_SORT_COMMAND='todosort.py {{ .todo.personalPriority }}' |