diff options
| author | lukeflo | 2025-02-24 15:29:47 +0000 |
|---|---|---|
| committer | lukeflo | 2025-02-24 15:29:47 +0000 |
| commit | 5da77a2f812a0bb6e0057f7b2e2c642142fca125 (patch) | |
| tree | 6be886693445a54e4cbd7b98151555eec220e863 /files | |
| parent | dd8dd9611771491e723a49b41cf27b1e9090664d (diff) | |
| parent | aff7c398da005029a293178e487cf5323e507fb4 (diff) | |
| download | bibiman-5da77a2f812a0bb6e0057f7b2e2c642142fca125.tar.gz bibiman-5da77a2f812a0bb6e0057f7b2e2c642142fca125.zip | |
Merge pull request 'Implement config file' (#15) from implement-config into main
Reviewed-on: https://codeberg.org/lukeflo/bibiman/pulls/15
Diffstat (limited to 'files')
| -rw-r--r-- | files/bibiman.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/files/bibiman.toml b/files/bibiman.toml new file mode 100644 index 0000000..2e5d51b --- /dev/null +++ b/files/bibiman.toml @@ -0,0 +1,30 @@ +# [general] +## Default files/dirs which are loaded on startup +## Use absolute paths (~ for HOME works). Otherwise, loading might not work. +# bibfiles = [ "/path/to/bibfile", "path/to/dir/with/bibfiles" ] + +## 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" + +# [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" |
