runa-tui 0.6.2

A fast, keyboard-focused terminal file manager (TUI). Highly configurable and lightweight.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Configuration options for runa
//!
//! This module holds the submodules and structs necessary to load and represent
//! configuration options for runa, including display settings, input keybindings,

pub(crate) mod display;
pub(crate) mod general;
pub(crate) mod input;
pub(crate) mod load;
pub(crate) mod presets;
pub(crate) mod theme;

pub(crate) use display::Display;
pub(crate) use general::{General, InternalGeneral};
pub(crate) use input::{Editor, Keys};
pub(crate) use load::Config;
pub(crate) use theme::Theme;