2020-12-25 10:57:31 +00:00
|
|
|
# Taskwarrior program configuration file.
|
|
|
|
# For more documentation, see http://taskwarrior.org or try 'man task', 'man task-color',
|
|
|
|
# 'man task-sync' or 'man taskrc'
|
|
|
|
|
|
|
|
# Here is an example of entries that use the default, override and blank values
|
|
|
|
# variable=foo -- By specifying a value, this overrides the default
|
|
|
|
# variable= -- By specifying no value, this means no default
|
|
|
|
# #variable=foo -- By commenting out the line, or deleting it, this uses the default
|
|
|
|
|
|
|
|
# Use the command 'task show' to see all defaults and overrides
|
|
|
|
|
|
|
|
# Files
|
2021-10-07 09:17:18 +00:00
|
|
|
data.location=$XDG_DATA_HOME/task/
|
2020-12-25 10:57:31 +00:00
|
|
|
|
|
|
|
# disable case sensitivity
|
|
|
|
search.case.sensitive=no
|
|
|
|
|
2021-03-05 12:55:20 +00:00
|
|
|
# change verbosity to hide header (i.e. TASKRC override notification)
|
|
|
|
verbose=blank,footnote,label,new-id,affected,edit,special,project,sync,unwait,override,recur
|
|
|
|
|
2020-12-25 10:57:31 +00:00
|
|
|
# german-style week start
|
|
|
|
weekstart=monday
|
|
|
|
|
|
|
|
# Make daily burndown default alias
|
|
|
|
alias.burndown=burndown.daily
|
|
|
|
|
|
|
|
# Sort the columns a little differently
|
|
|
|
active.indicator=>
|
2020-12-25 16:56:58 +00:00
|
|
|
|
2020-12-25 10:57:31 +00:00
|
|
|
# customize list report: focus on due dates
|
|
|
|
report.list.columns=start.active,id,project,priority,due,description,tags,entry.age
|
|
|
|
report.list.labels=,,Project,Pri,Due,Description,Tags,Age
|
|
|
|
# customize next report: focus on urgencies
|
|
|
|
report.next.columns=id,project,priority,urgency,due,description,tags,scheduled,entry.age,recur
|
|
|
|
report.next.labels=,Project,Pri,Urg,Due,Description,Tags,Sched,Age,Recur
|
|
|
|
|
2020-12-25 16:56:58 +00:00
|
|
|
# customize overdue report: hide tasks which are due today, but scheduled for 00:00:00
|
2021-10-07 09:17:18 +00:00
|
|
|
report.overdue.filter=(status:pending or +WAITING) and +OVERDUE and -TODAY
|
2020-12-25 16:56:58 +00:00
|
|
|
# custom today report, sorted by urgency
|
2021-03-05 12:55:20 +00:00
|
|
|
report.today.description=Tasks scheduled for today, sorted by urgency
|
2022-02-13 19:11:01 +00:00
|
|
|
report.today.filter=status:pending -WAITING +TODAY or +OVERDUE limit:page
|
2020-12-25 16:56:58 +00:00
|
|
|
report.today.sort=urgency-
|
|
|
|
report.today.columns=id,project,priority,urgency,due,description,tags,scheduled,entry.age,recur
|
|
|
|
report.today.labels=,Project,Pri,Urg,Due,Description,Tags,Sched,Age,Recur
|
2021-04-18 10:05:22 +00:00
|
|
|
# report overview of tasks accomplished today
|
|
|
|
report.today.completed.description=Tasks completed today
|
|
|
|
report.today.completed.filter=status:completed end.after:tod
|
|
|
|
report.today.completed.columns=id,project,priority,urgency,due,description,tags,scheduled,entry.age,recur
|
|
|
|
report.today.completed.labels=,Project,Pri,Urg,Due,Description,Tags,Sched,Age,Recur
|
2020-12-25 16:56:58 +00:00
|
|
|
|
2020-12-25 10:57:31 +00:00
|
|
|
# reorder priorities so that explicitly tagged 'Low' items are lower than normal
|
|
|
|
uda.priority.values=H,M,,L
|
|
|
|
urgency.uda.priority.L.coefficient=0
|
|
|
|
urgency.uda.priority..coefficient=1.8
|
|
|
|
|
|
|
|
# Just because its tagged/annotated doesn't mean its important
|
|
|
|
urgency.tags.coefficient=0
|
|
|
|
urgency.annotations.coefficient=0
|
2021-03-05 12:55:20 +00:00
|
|
|
# maybe items are not urgent at all
|
|
|
|
urgency.user.tag.maybe.coefficient=-100.0
|
2022-02-13 19:11:01 +00:00
|
|
|
urgency.user.tag.next.coefficient=5.0
|
2020-12-25 10:57:31 +00:00
|
|
|
|
2022-07-08 20:37:06 +00:00
|
|
|
# things that are blocking simply have to be done before
|
|
|
|
# being able to do the blocked thing. This ensures that.
|
|
|
|
urgency.blocked.coefficient=0.0
|
|
|
|
urgency.blocking.coefficient=0.0
|
|
|
|
urgency.inherit=1
|
|
|
|
|
2021-10-10 08:04:59 +00:00
|
|
|
# Holidays for calendar
|
|
|
|
include /usr/share/doc/task/rc/holidays.de-DE.rc
|
2022-03-10 19:23:51 +00:00
|
|
|
|
|
|
|
# Themes are in additional file
|
|
|
|
include colorscheme
|
2021-03-27 21:15:45 +00:00
|
|
|
|
2021-10-10 08:04:59 +00:00
|
|
|
# Taskserver sync settings
|
|
|
|
include task-sync.rc
|
|
|
|
|
2021-03-27 21:15:45 +00:00
|
|
|
# try to fix some color weirdness, especially in tmux
|
2021-04-18 10:05:22 +00:00
|
|
|
# color.scheduled=on grey
|
2021-03-27 21:15:45 +00:00
|
|
|
|
|
|
|
# only ever show one result in the tasksh
|
|
|
|
tasksh.autoclear=1
|
|
|
|
# for tasksh review sessions
|
2021-03-20 08:03:48 +00:00
|
|
|
uda.reviewed.type=date
|
|
|
|
uda.reviewed.label=Reviewed
|
|
|
|
report._reviewed.description=Tasksh review report. Adjust the filter to your needs.
|
|
|
|
report._reviewed.columns=uuid
|
|
|
|
report._reviewed.sort=reviewed+,modified+
|
|
|
|
report._reviewed.filter=( reviewed.none: or reviewed.before:now-6days ) and ( +PENDING or +WAITING )
|
2021-03-27 21:15:45 +00:00
|
|
|
|
|
|
|
# different life contexts
|
2021-10-07 09:17:18 +00:00
|
|
|
context.arbeit.read=project:arbeit
|
|
|
|
context.arbeit.write=project:arbeit
|
|
|
|
context.personal.read=project.hasnt:arbeit
|
2021-11-16 11:15:55 +00:00
|
|
|
news.version=2.6.0
|