File: todorc

package info (click to toggle)
devtodo 0.1.20-6.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 2,116 kB
  • sloc: sh: 9,134; cpp: 3,943; perl: 112; makefile: 73; ansic: 3; csh: 2
file content (78 lines) | stat: -rw-r--r-- 2,268 bytes parent folder | download | duplicates (5)
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
#
# This is an example /etc/todorc file. Modify to suit. This file can also be
# placed in ~/.todorc.
#

# Don't display children
filter -children

# Specify colours
#colour title=+green
#colour info=green
#colour veryhigh=+red
#colour high=yellow
#colour medium=white
#colour low=cyan
#colour verylow=blue

# Turn summary mode on
#summary

# Be generally paranoid about file ownerships and permissions
paranoid

# The database to use if --global or -G is specified
global-database $HOME/.todo_global

# Try binary format database, then XML
#database-loaders binary,xml

# Keep two backups of the database
#backup 2

# Sort items by whether they are completed, then priority, then creation time
# then finally by the text.
sort -done,priority,-created,-text

# Display date in a more Australian/UK friendly format.
#date-format %d/%m/%y, %H:%M\n

# Display date in American wierd-arse format.
#format date=%m/%d/%y, %H:%M\n

# Default display format
#format display=%4>%i%[info]%f%2n.%[priority]%+1T\n
#format verbose-display=%4>%i%[info]%f%2n.(added %c) %[priority]%+1T\n
#format generated=%2>%i- %+1T\n
#format verbose-generated=%2>%i- (added %c, completed %d) %+1T\n

# User-defined formats. These can be used to use different formatted displays.
# 
#format full-report=%i%[info]%f%2n.%[priority]%+1T%+1i%[info]Added: %[normal]%c  %[info]Completed: %[normal]%d\n%+1i%[info]Duration: %[normal]%D  %[info]Priority: %[normal]%p\n\n
# Override the display format to use "full-report".
#use-format display=full-report

# Force removal of world and group permissions from database when created
#on create {
#	exec chmod 600 $TODODB
#}

# When saving a database, also create a HTML version as .todo.html.
# This requires the libxslt library from xmlsoft.org in addition to the XSLT
# file in the devtodo contrib directory.
#on save {
#   echo HTML created
#   exec xsltproc /usr/share/devtodo/todo-html.xslt $TODODB > `dirname $TODODB`/.todo.html
#   exec chmod 600 `dirname $TODODB`/.todo.html
#}

# Make todo verbose when adding, editing or changing the title so that prompts
# will be displayed.
on add verbose
on edit verbose
on title verbose

# Use default priorities when editing, adding or grafting. This supresses 
# prompting for the priority.
#priority default