aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index 956b724..f1ac3ca 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -41,6 +41,7 @@ pub struct General {
pub editor: Option<String>,
pub pdf_opener: String,
pub url_opener: String,
+ pub file_prefix: Option<PathBuf>,
}
/// Substruct [colors] in config.toml
@@ -66,6 +67,7 @@ impl Default for BibiConfig {
editor: None,
pdf_opener: select_opener(),
url_opener: select_opener(),
+ file_prefix: None,
},
colors: Colors {
main_text_color: Color::Indexed(250),