fm-tui 0.2.3

FM : a file manager inspired by ranger and dired{n}{n}Config files ~/.config/fm/{n}Documentation https://github.com/qkzk/fm{n}
Documentation
//! Everything about configuration from text files in `$HOME/.config/fm`.
//!
//! - [`cloud_config::cloud_config`] is the function used to create a valid token for cloud files (google drive only ATM),
//! - `colors` holds everything about reading, parsing, converting & generating colors,
//! - `configuration`]holds everything about the yaml files used and their configuration,
//! - [`gradient::Gradient`] is the only color thing placed elsewhere, it's just a gradient generator of 254 variants from a static start to a static end. Doing so allows us to export those colors as a static array at runtime.
//! - `oncelock_static` holds all the static files configured by config and argument parameters. Those static files are set once from config and can be read every where in the application.
//! - [`keybindings::Bindings`] & [`keybindings::from_keyname`] are used to handle the user configured keybinds. The first creates default (hardcoded) keybinds and tries to update from from the config file, the second is used to read those configuration files.

mod cloud_config;
mod colors;
mod configuration;
mod default_config;
mod gradient;
mod keybindings;
mod oncelock_static;

pub use cloud_config::cloud_config;
pub use colors::{extension_color, str_to_ratatui, ColorG, NormalFileColorer, MAX_GRADIENT_NORMAL};
pub use configuration::{
    load_config, read_normal_file_colorer, Config, FileStyle, Imagers, MenuStyle, PreferedImager,
    SyntectTheme,
};
pub use default_config::*;
pub use gradient::Gradient;
pub use keybindings::{from_keyname, Bindings};
pub use oncelock_static::{
    get_prefered_imager, get_previewer_command, get_previewer_plugins, get_syntect_theme,
    set_configurable_static, set_icon_icon_with_metadata, set_previewer_plugins, with_icon,
    with_icon_metadata, ARRAY_GRADIENT, COLORER, FILE_STYLES, IS_LOGGING, MATCHER, MENU_STYLES,
    START_FOLDER,
};