Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-config/src/lib.rs')
| -rw-r--r-- | helix-config/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-config/src/lib.rs b/helix-config/src/lib.rs index 336a57f1..9fe65b7e 100644 --- a/helix-config/src/lib.rs +++ b/helix-config/src/lib.rs @@ -14,6 +14,7 @@ use any::ConfigData; use convert::ty_into_value; pub use convert::IntoTy; pub use definition::{init_config, init_language_server_config}; +pub use toml::read_toml_config; use validator::StaticValidator; pub use validator::{regex_str_validator, ty_validator, IntegerRangeValidator, Ty, Validator}; pub use value::{from_value, to_value, Value}; @@ -23,6 +24,7 @@ mod convert; mod definition; pub mod env; mod macros; +mod toml; mod validator; mod value; |