Advertisement
JeSuisNerd

config

Apr 20th, 2012
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. # === EDIT FILE LOCATIONS BELOW ===
  2.  
  3. # Your todo.txt directory
  4. #export TODO_DIR="/Users/gina/Documents/todo"
  5. export TODO_DIR="/home/egon/.todo/"
  6.  
  7. # Your todo/done/report.txt locations
  8. export TODO_FILE="$TODO_DIR/todo.txt"
  9. export DONE_FILE="$TODO_DIR/done.txt"
  10. export REPORT_FILE="$TODO_DIR/report.txt"
  11. export TMP_FILE="$TODO_DIR/todo.tmp"
  12.  
  13. # You can customize your actions directory location
  14. #export TODO_ACTIONS_DIR="$HOME/.todo.actions.d"
  15.  
  16. # == EDIT FILE LOCATIONS ABOVE ===
  17.  
  18. # === COLOR MAP ===
  19.  
  20. ## Text coloring and formatting is done by inserting ANSI escape codes.
  21. ## If you have re-mapped your color codes, or use the todo.txt
  22. ## output in another output system (like Conky), you may need to
  23. ## over-ride by uncommenting and editing these defaults.
  24. ## If you change any of these here, you also need to uncomment
  25. ## the defaults in the COLORS section below. Otherwise, todo.txt
  26. ## will still use the defaults!
  27.  
  28. # export BLACK='\\033[0;30m'
  29. # export RED='\\033[0;31m'
  30. # export GREEN='\\033[0;32m'
  31. # export BROWN='\\033[0;33m'
  32. # export BLUE='\\033[0;34m'
  33. # export PURPLE='\\033[0;35m'
  34. # export CYAN='\\033[0;36m'
  35. # export LIGHT_GREY='\\033[0;37m'
  36. # export DARK_GREY='\\033[1;30m'
  37. # export LIGHT_RED='\\033[1;31m'
  38. # export LIGHT_GREEN='\\033[1;32m'
  39. # export YELLOW='\\033[1;33m'
  40. # export LIGHT_BLUE='\\033[1;34m'
  41. # export LIGHT_PURPLE='\\033[1;35m'
  42. # export LIGHT_CYAN='\\033[1;36m'
  43. # export WHITE='\\033[1;37m'
  44. # export DEFAULT='\\033[0m'
  45.  
  46. # === COLORS ===
  47.  
  48. ## Uncomment and edit to override these defaults.
  49. ## Reference the constants from the color map above,
  50. ## or use $NONE to disable highlighting.
  51. #
  52. # Priorities can be any upper-case letter.
  53. # A,B,C are highlighted; you can add coloring for more.
  54. #
  55. export PRI_A=$BLUE # color for A priority
  56. export PRI_B=$GREEN # color for B priority
  57. export PRI_C=$YELLOW # color for C priority
  58. export PRI_D=$PURPLE # define your own
  59. # export PRI_X=$WHITE # color unless explicitly defined
  60.  
  61. # There is highlighting for tasks that have been done,
  62. # but haven't been archived yet.
  63. #
  64. # export COLOR_DONE=$LIGHT_GREY
  65.  
  66. # === BEHAVIOR ===
  67.  
  68. ## customize list output
  69. #
  70. # TODOTXT_SORT_COMMAND will filter after line numbers are
  71. # inserted, but before colorization, and before hiding of
  72. # priority, context, and project.
  73. #
  74. # export TODOTXT_SORT_COMMAND='env LC_COLLATE=C sort -f -k2'
  75.  
  76. # TODOTXT_FINAL_FILTER will filter list output after colorization,
  77. # priority hiding, context hiding, and project hiding. That is,
  78. # just before the list output is displayed.
  79. #
  80. # export TODOTXT_FINAL_FILTER='cat'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement