diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -145,6 +145,9 @@ editor = "vim" # with args: "vim -y" 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" ``` If no file or dir is set as `bibfiles` value, you *have to* add a path via CLI @@ -152,6 +155,23 @@ interface. If the `bibfiles` value is set *and* a further path (or multiple) is provided through the CLI call, the entries of all those files will be opened in the started `bibiman` session. +The file prefix offers the possibility to keep file paths in your `.bib` file +short: E.g. a combination of those values in config and bibfile: + +```toml +# bibiman.toml +file_prefix = "~/Documents/literature" +``` + +```bibtex +# bibfile.bib +file = {aristotle.pdf} +``` + +Will result in opening the file `~/Documents/literature/aristotle.pdf` when +trying to open the PDF from inside `bibiman`. The `.bib` file itself will not be +edited! + ### Color Configuration<a name="color-configuration"></a> Furthermore, it is now possible to customize the colors. The following values |
