repos / dotfiles

my dotfiles

dotfiles / dot_config / khard
Eric Bower  ·  2024-08-24

khard.conf

 1# example configuration file for khard version > 0.14.0
 2# place it under ~/.config/khard/khard.conf
 3# This file is parsed by the configobj library.  The syntax is described at
 4# https://configobj.readthedocs.io/en/latest/configobj.html#the-config-file-format
 5
 6[addressbooks]
 7[[contacts]]
 8path = ~/.contacts/Default/
 9
10[general]
11debug = no
12default_action = list
13# These are either strings or comma seperated lists
14editor = vim, -i, NONE
15merge_editor = vimdiff
16
17[contact table]
18# display names by first or last name: first_name / last_name / formatted_name
19display = first_name
20# group by address book: yes / no
21group_by_addressbook = no
22# reverse table ordering: yes / no
23reverse = no
24# append nicknames to name column: yes / no
25show_nicknames = no
26# show uid table column: yes / no
27show_uids = no
28# sort by first or last name: first_name / last_name / formatted_name
29sort = last_name
30# localize dates: yes / no
31localize_dates = yes
32# set a comma separated list of preferred phone number types in descending priority
33# or nothing for non-filtered alphabetical order
34preferred_phone_number_type = pref, cell, home
35# set a comma separated list of preferred email address types in descending priority
36# or nothing for non-filtered alphabetical order
37preferred_email_address_type = pref, work, home
38
39[vcard]
40preferred_version = 3.0
41# Look into source vcf files to speed up search queries: yes / no
42search_in_source_files = no
43# skip unparsable vcard files: yes / no
44skip_unparsable = no
45
46