plugins.papis.settings.papis-storage.key_name_conversions
As lua doesn’t deal well with ‘-’, we define conversions between the format
in the info.yaml
and the format in papis.nvim’s internal database.
Type: null or (attribute set of (string or raw lua code)) or raw lua code
Default:
null
Plugin default:
{
time_added = "time-added";
}
Declared by:
plugins.papis.settings.papis-storage.required_keys
The keys which .yaml
files are expected to always define.
Files that are missing these keys will cause an error message and will not be added to the database.
Type: null or (list of (string or raw lua code)) or raw lua code
Default:
null
Plugin default:
[
"papis_id"
"ref"
]
Declared by:
plugins.papis.settings.papis-storage.tag_format
The format used for tags. Will be determined automatically if left empty.
Can be set to:
"tbl"
if a lua table,","
if comma-separated,":"
if semi-colon separated," "
if space separated.
Type: null or one of “tbl”, “,”, “:”, " " or raw lua code
Default:
null
Plugin default: null
Example:
"tbl"
Declared by: