1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# FILES ====----
data.location=~/.task
default.command=ready
include ~/.task/server/server-config.rc
include ~/.task/taskwarrior-holidays.rc
calendar.holidays=sparse
verbose=blank,footnote,label,new-id,affected,context
# URGENCY TWEAKS ====----
#urgency.active.coefficient=500
urgency.blocking.coefficient=1
urgency.annotations.coefficient=0
# CONTEXTS ====----
context.work=project:Work
context.home=project.not:Work
context.school=project:School
# MY THEME ====----
rule.precedence.color=deleted,completed,active,keyword.,tag.,project.,overdue,scheduled,due.today,due,blocked,blocking,recurring,tagged,uda.
# General decoration
color.label=bold
color.label.sort=bold yellow
color.alternate=on color18
color.header=color19
color.footnote=color8
color.warning=bold red
color.error=bold white on red
color.debug=color4
# Task state
color.completed=color8
color.deleted=color8
color.active=bold color15 on color16
color.recurring=blue
color.scheduled=yellow
color.until=yellow
color.blocked=color8
#color.blocking=black on color20
color.blocking=cyan
# Project
#color.project.none=
# Priority
color.uda.priority.H=color15
color.uda.priority.L=color8
color.uda.priority.M=color20
# Tags
color.tagged=color17
color.tag.next=color16
#color.tag.none=
# Due
color.due.today=bold red
color.due=red
color.overdue=bold red
# Report: burndown
color.burndown.done=on green
color.burndown.pending=on red
color.burndown.started=on yellow
# Report: history
color.history.add=color0 on red
color.history.delete=on color18
color.history.done=color0 on green
# Report: summary
color.summary.background=white on black
color.summary.bar=black on green
# Command: calendar
color.calendar.due.today=color15 on red
color.calendar.due=color15 on color8
color.calendar.holiday=color0 on yellow
color.calendar.overdue=color15 on red
color.calendar.today=color0 on blue
color.calendar.weekend=on color18
color.calendar.weeknumber=color19
# Command: sync
color.sync.added=green
color.sync.changed=yellow
color.sync.rejected=red
# Command: undo
color.undo.after=color2
color.undo.before=color1
# OTHER THINGS ====----
report.ready.columns=id,start.age,entry.age,priority,project,tags,recur.indicator,scheduled.countdown,due.countdown,until.remaining,description,urgency
report.ready.labels=ID,Active,Age,P,Project,Tags,R,S,Due,Until,Description,Urg
uda.reviewed.type=date
uda.reviewed.label=Reviewed
report._review.description=Show IDs of tasks to review
report._review.columns=uuid
report._review.sort=reviewed+,modified+
report._review.filter=( reviewed.none: or reviewed.before:now-5days ) and ( +PENDING or +WAITING )
|