summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index ae459807..94c7366d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,6 +6,7 @@
use std::path::PathBuf;
use eyre::{eyre, Result};
+use human_panic::setup_panic;
use structopt::{clap::AppSettings, StructOpt};
#[macro_use]
@@ -73,6 +74,7 @@ impl Atuin {
}
fn main() -> Result<()> {
+ setup_panic!();
let settings = Settings::new()?;
fern::Dispatch::new()