summaryrefslogtreecommitdiffstats
path: root/src/config/general/app.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/general/app.rs')
-rw-r--r--src/config/general/app.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/general/app.rs b/src/config/general/app.rs
index f2602b0..9ee900e 100644
--- a/src/config/general/app.rs
+++ b/src/config/general/app.rs
@@ -1,3 +1,5 @@
+use std::collections::HashMap;
+
use super::app_raw::AppConfigRaw;
use super::DEFAULT_CONFIG_FILE_PATH;
@@ -10,6 +12,7 @@ pub struct AppConfig {
pub xdg_open: bool,
pub xdg_open_fork: bool,
pub watch_files: bool,
+ pub cmd_aliases: HashMap<String, String>,
pub _display_options: DisplayOption,
pub _preview_options: PreviewOption,
pub _tab_options: TabOption,