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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-config/src/lib.rs b/helix-config/src/lib.rs index 8f27e41e..336a57f1 100644 --- a/helix-config/src/lib.rs +++ b/helix-config/src/lib.rs @@ -13,13 +13,15 @@ use parking_lot::{MappedRwLockReadGuard, RwLock, RwLockReadGuard}; use any::ConfigData; use convert::ty_into_value; pub use convert::IntoTy; -pub use definition::init_config; +pub use definition::{init_config, init_language_server_config}; use validator::StaticValidator; pub use validator::{regex_str_validator, ty_validator, IntegerRangeValidator, Ty, Validator}; pub use value::{from_value, to_value, Value}; mod any; mod convert; +mod definition; +pub mod env; mod macros; mod validator; mod value; |