rustfmt, clippy, gh actions, justfile, Default app (#4)

* `Default` app
* add zed settings
* add justfile
* flake: update devShell, ignore tests, add `just`
* update README
* gh actions: lint, format, tests. build
This commit is contained in:
Jens K.
2024-11-29 15:49:55 +01:00
committed by GitHub
parent a9e573122d
commit 3d0d55c8d8
7 changed files with 131 additions and 30 deletions

View File

@@ -11,7 +11,7 @@ use color_eyre::{eyre::Context, Result};
fn main() -> Result<()> {
color_eyre::install()?;
let terminal = ratatui::init();
let app_result = App::new().run(terminal).context("app loop failed");
let app_result = App::default().run(terminal).context("app loop failed");
ratatui::restore();
app_result
}