eazygit 0.5.1

A fast TUI for Git with staging, conflicts, rebase, and palette-first UX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod keymap;
pub mod settings;
pub mod theme;
pub mod validation;
pub mod structs;

#[cfg(test)]
mod tests;
pub mod loader;

pub use settings::Settings;
pub use theme::{ThemeConfig, PartialThemeConfig};
pub use structs::{PartialConfig, CommitConfig};
pub use loader::{load, create_default_config, persist_theme};
pub use theme::loader::{load_theme_by_name, list_themes};