forked from extern/nushell
* [4325] - wip * [4325] - hightlight only matched symbol * [4325] - cleanup * [4325] - match bracket while typing * [4325] - fix clippy * [4325] - add bracket highlight configuration * [4325] - fix working with non-ascii
10 lines
185 B
Rust
10 lines
185 B
Rust
mod color_config;
|
|
mod matching_brackets_style;
|
|
mod nu_style;
|
|
mod shape_color;
|
|
|
|
pub use color_config::*;
|
|
pub use matching_brackets_style::*;
|
|
pub use nu_style::*;
|
|
pub use shape_color::*;
|