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.

71 lines
2.3 KiB

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