mist-core 2.0.1

core functionality of mist
1
2
3
4
5
6
7
8
9
10
//! Configuration of mist.
mod cfg;
mod colors;
mod font;
mod keybinds;
mod panels;
pub use {
    cfg::get_plugin_dir, cfg::Config, colors::Colors, font::Font, keybinds::KeybindsRaw,
    panels::Panel,
};