-
Notifications
You must be signed in to change notification settings - Fork 4
/
annote.config
53 lines (42 loc) · 1.37 KB
/
annote.config
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
# assign as
# <key>=<value>
# <space> will be ignored in specfying key-value pair
# <space><key><space>=<space><value><space>
# default group name
default_group=default
# default tag name
default_tag=default
# default database location
#db_loc=/db/loc
# non-default multiple database locations
# Specify multiple databases and refer them through command line args using key
# 'kname' as in `dbl_key_kname=<db location>'.
# All key's must be preceded by 'dbl_key_', and then provide user defined key.
#dbl_key_k1=/db/loc/1
#dbl_key_k2=/db/loc/2
# temp databse to hold temprory data that will be deleted at shutdown
dbl_key_temp=/tmp/annote
# editor
editor=vim -u ~/.annote/vimrc
gui_editor=gedit
# output formatting
# uncomment for specifying anything except space
#list_delim=" "
# create format for list using
# <SNO> serial number, auto increment for row number
# <NID> unique note id
# <TITLE> note title
# <GROUP> note group
# <TAGS> note tags
# <DELIM> delimiter, specify delimiter in `list_delim' except for space
#
#list_format=<SNO><DELIM><NID><DELIM><GROUP><DELIM><TAGS><DELIM><TITLE>
list_format=<SNO><DELIM><NID><DELIM><TITLE>
# List output sorting
# values(<val>) can be:
# 'L|l' --> latest on the top,
# 'O|o' --> oldest on the top,
# 'M|m' --> recent modified on top
# 'F|f' --> display as they're found (default)
#list_sort_as=<val>
list_sort_as=F