Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.3 KiB

  1. # BROWSER='xdg-open $FILE &>/dev/null'
  2. BROWSER='firefox'
  3. EDITOR='nvim'
  4. #FILE_CMD='xdg-open'
  5. TASKBIN='task'
  6. # If you sync tasks NOTES_FOLDER should be a location that syncs and is available to
  7. # other computers, i.e. /users/dropbox/tasknotes
  8. # NOTES_FOLDER to store notes in, must already exist!
  9. NOTES_FOLDER="$HOME/.task/notes/"
  10. # Preferred extension for tasknotes
  11. NOTES_EXT=".md"
  12. # Path to notes file. UUID will be replaced with the actual uuid of
  13. # the task. If NOTES_CMD
  14. # Default is: ${NOTES_FOLDER}UUID${NOTES_EXT}
  15. #NOTES_FILE="$HOME/tasknotes/UUID.txt"
  16. # Command that opens notes. UUID will be replaced with the actual uuid of
  17. # the task.
  18. # Default is: $EDITOR $NOTES_FILE
  19. #NOTES_CMD="vim "$HOME/tasknotes/$UUID.txt""
  20. # Specify the default sorting.
  21. # Default is taskwarrior's default sorting, i.e. sorting by task IDs.
  22. #DEFAULT_SORT="urgency-,label,annot"
  23. # Apply a default taskwarrior filter in order to exclude certain tasks.
  24. # Default is: status.is:pending
  25. #DEFAULT_FILTER=
  26. # Default command for '-i'
  27. # Default is: ls -la
  28. #DEFAULT-i="ls -la"
  29. # Add some paths to the taskopen's PATH variable
  30. #PATH_EXT=/path/to/taskopen/scripts
  31. PATH_EXT=/usr/share/taskopen/scripts
  32. # Regular expression that referes to the NOTES_FILE.
  33. # Default is: Notes
  34. #NOTES_REGEX="Notes"
  35. # Regular expression that identifies annotations openable by BROWSER.
  36. # Default is: www|http
  37. #BROWSER_REGEX="www|http"
  38. # Regular expression that identifies file paths in annotations. Will be opened by xdg-open.
  39. # Default is: \.|\/|~
  40. #FILE_REGEX="\.|\/|~"
  41. # Regular expression that identifies a text annotation. Automatically triggers raw edit mode like '-r'.
  42. #TEXT_REGEX=".*"
  43. # Custom regular expression that specifies annotations passed to CUSTOM1_CMD, e.g:
  44. #CUSTOM1_REGEX="Message-[Ii][Dd]:|message:"
  45. #CUSTOM1_CMD="muttjumpwrapper"
  46. # Custom regular expression that specifies annotations passed to CUSTOM2_CMD.
  47. #CUSTOM2_REGEX=""
  48. #CUSTOM2_CMD=""
  49. # Execute an arbitrary command if there is no annotation available. The corresponding taskwarrior IDs will
  50. # be passed as arguments, e.g. "addnote 21 42"
  51. #NO_ANNOTATION_HOOK=addnote
  52. # Make additional taskwarrior attributes available as sort keys and environment variables.
  53. # E.g. TASK_ATTRIBUTES="project,tags" allows to sort by "task_project" or "task_tags" and to use
  54. # "$TASK_PROJECT" or "$TASK_TAGS" within your (custom) commands.
  55. #TASK_ATTRIBUTES=""