mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
22 lines
551 B
Bash
22 lines
551 B
Bash
# vim: ft=bash
|
|
# reference: /etc/todo/config
|
|
export TODOTXT_VERBOSE=1
|
|
|
|
export TODO_ACTIONS_DIR="$HOME/.dotfiles/config/todo/actions"
|
|
export TODOTXT_DEFAULT_ACTION="next"
|
|
|
|
export TODO_DIR=~/org
|
|
export TODO_FILE="$TODO_DIR/todo.txt"
|
|
export DONE_FILE="$TODO_DIR/done.txt"
|
|
export REPORT_FILE="$TODO_DIR/.report.txt"
|
|
export HABIT_FILE="$TODO_DIR/habits.txt"
|
|
|
|
export PRI_A=$YELLOW
|
|
export PRI_B=$PURPLE
|
|
export PRI_C=$LIGHT_BLUE
|
|
|
|
export COLOR_PROJECT=$GREEN
|
|
export COLOR_CONTEXT=$CYAN
|
|
export COLOR_DATE=$BLUE
|
|
export COLOR_NUMBER=$CYAN
|
|
export COLOR_META=$BLUE
|