nu_color_config/
lib.rs

1#![doc = include_str!("../README.md")]
2mod color_config;
3mod matching_brackets_style;
4mod nu_style;
5mod shape_color;
6mod style_computer;
7mod text_style;
8
9pub use color_config::*;
10pub use matching_brackets_style::*;
11pub use nu_style::*;
12pub use shape_color::*;
13pub use style_computer::*;
14pub use text_style::*;