summaryrefslogtreecommitdiffstats
path: root/.config/khard
diff options
context:
space:
mode:
authorYigit Sever2021-10-08 00:26:05 +0300
committerYigit Sever2021-10-08 00:26:05 +0300
commitd1a9c58ddb92c62e0651725f0ebabb139cdae05a (patch)
tree48b3ac760c7b52a0cb1494d0ce0da6d9ff37c4f7 /.config/khard
parent8972d19ad807f2c92826cfcf09e40ce9f0a0b27d (diff)
downloaddotfiles-d1a9c58ddb92c62e0651725f0ebabb139cdae05a.tar.gz
dotfiles-d1a9c58ddb92c62e0651725f0ebabb139cdae05a.tar.bz2
dotfiles-d1a9c58ddb92c62e0651725f0ebabb139cdae05a.zip
khard: tracking config
diffstat (limited to '.config/khard')
-rw-r--r--.config/khard/khard.conf52
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]]
7path = ~/.local/share/contacts/contacts
8
9[general]
10debug = no
11default_action = list
12# These are either strings or comma seperated lists
13editor = nvim, -i, NONE
14merge_editor = nvim
15
16[contact table]
17# display names by first or last name: first_name / last_name / formatted_name
18display = first_name
19# group by address book: yes / no
20group_by_addressbook = no
21# reverse table ordering: yes / no
22reverse = no
23# append nicknames to name column: yes / no
24show_nicknames = no
25# show uid table column: yes / no
26show_uids = yes
27# sort by first or last name: first_name / last_name / formatted_name
28sort = first_name
29# localize dates: yes / no
30localize_dates = yes
31# set a comma separated list of preferred phone number types in descending priority
32# or nothing for non-filtered alphabetical order
33preferred_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
36preferred_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
47preferred_version = 3.0
48# Look into source vcf files to speed up search queries: yes / no
49search_in_source_files = no
50# skip unparsable vcard files: yes / no
51skip_unparsable = no
52