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
79
80
|
[general]
## Default files/dirs which are loaded on startup
## Use absolute paths (~ for HOME works). Otherwise, loading might not work.
bibfiles = [ "tests/biblatex-test.bib" ]
## Default editor to use when editing files. Arguments are possible
editor = "vim" # with args: "vim -y"
## Default app to open PDFs/Epubs
# pdf_opener = "xdg-open"
## Default app to open URLs/DOIs
# url_opener = "xdg-open"
## Prefix which is prepended to the filepath from the `file` field
## Use absolute paths (~ for HOME works). Otherwise, loading might not work.
file_prefix = "/some/path/prefix"
## Path to folder (with subfolders) containing PDF files with the basename
## of the format "citekey.pdf". Other PDF basenames are not accepted.
## Use absolute paths (~ for HOME works). Otherwise, loading might not work.
pdf_path = "tests/pdf-files"
## Path to folder (with subfolders) containing note files with the basename of
## the format "citekey.extension". Other basenames are not accepted. The possible
## extensions can be set through the "note_extensions" array.
note_path = "tests/note-files"
note_extensions = [ "md", "txt" ]
## Symbols/chars to show if not has specific attachement
file_symbol = " "
link_symbol = " "
note_symbol = ""
## Select a custom column beside standard "author", "title" and "year"
## Possible values are "journaltitle", "organization", "instituion", "publisher"
## and "pubtype" (which is the default)
custom_column = "series"
# [colors]
## Default values for dark-themed terminal
## Possible values are:
## ANSI color names. E.g. "bright-black"
## 256-colors indices. E.g. "250"
## Hex color codes. E.g. "#3a3a3a"
# main_text_color = "250"
# highlight_text_color = "254"
# entry_color = "36"
# keyword_color = "101"
# info_color = "99"
# confirm_color = "47"
# warn_color = "124"
# bar_bg_color = "234"
# popup_bg_color = "234"
# selected_row_bg_color = "237"
# note_color = "123"
# file_color = "209"
# link_color = "27"
# author_color = "38"
# title_color = "37"
# year_color = "135"
[citekey_formatter]
fields = [
"shorthand;;;;+",
"entrytype;;;;:",
"author;2;;-;_",
"title;3;6;=;_",
"year",
"publisher;;5;#;"
]
# fields = [ # CamelCase test
# "author;2;;;",
# "title;5;5;;",
# "year"
# ]
case = "lowercase"
ascii_only = true
# ignored_words = ["the"]
# ignored_chars = ["?", "."]
|