diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/khard/khard.conf | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/.config/khard/khard.conf b/.config/khard/khard.conf new file mode 100644 index 0000000..dc824da --- /dev/null +++ b/.config/khard/khard.conf | |||
@@ -0,0 +1,52 @@ | |||
1 | # example configuration file for khard version > 0.14.0 | ||
2 | # This file is parsed by the configobj library. The syntax is described at | ||
3 | # https://configobj.readthedocs.io/en/latest/configobj.html#the-config-file-format | ||
4 | |||
5 | [addressbooks] | ||
6 | [[contacts]] | ||
7 | path = ~/.local/share/contacts/contacts | ||
8 | |||
9 | [general] | ||
10 | debug = no | ||
11 | default_action = list | ||
12 | # These are either strings or comma seperated lists | ||
13 | editor = nvim, -i, NONE | ||
14 | merge_editor = nvim | ||
15 | |||
16 | [contact table] | ||
17 | # display names by first or last name: first_name / last_name / formatted_name | ||
18 | display = first_name | ||
19 | # group by address book: yes / no | ||
20 | group_by_addressbook = no | ||
21 | # reverse table ordering: yes / no | ||
22 | reverse = no | ||
23 | # append nicknames to name column: yes / no | ||
24 | show_nicknames = no | ||
25 | # show uid table column: yes / no | ||
26 | show_uids = yes | ||
27 | # sort by first or last name: first_name / last_name / formatted_name | ||
28 | sort = first_name | ||
29 | # localize dates: yes / no | ||
30 | localize_dates = yes | ||
31 | # set a comma separated list of preferred phone number types in descending priority | ||
32 | # or nothing for non-filtered alphabetical order | ||
33 | preferred_phone_number_type = pref, cell, home | ||
34 | # set a comma separated list of preferred email address types in descending priority | ||
35 | # or nothing for non-filtered alphabetical order | ||
36 | preferred_email_address_type = pref, work, home | ||
37 | |||
38 | [vcard] | ||
39 | # extend contacts with your own private objects | ||
40 | # these objects are stored with a leading "X-" before the object name in the vcard files | ||
41 | # every object label may only contain letters, digits and the - character | ||
42 | # example: | ||
43 | # private_objects = Jabber, Skype, Twitter | ||
44 | # default: , (the empty list) | ||
45 | # private_objects = Jabber, Skype, Twitter | ||
46 | # preferred vcard version: 3.0 / 4.0 | ||
47 | preferred_version = 3.0 | ||
48 | # Look into source vcf files to speed up search queries: yes / no | ||
49 | search_in_source_files = no | ||
50 | # skip unparsable vcard files: yes / no | ||
51 | skip_unparsable = no | ||
52 | |||