Mod - CurseForge
SuperMartijn642's Config Lib
Config Lib makes dealing with config files just a bit easier.
Source-provided project description. FreeMinecraftMods keeps creator credit and adds separate compatibility and decision guidance below.
Project overview
SuperMartijn642's Config Lib allows you to specify a config once and it then handles reloading values between world loads , syncing values with clients , and generating values for client- or server-only on its own. Creating a config: A config is created using a ModConfigBuilder. Simply create a new instance using #ModConfigBuilder(). ModConfigBuilder builder = new ModConfigBuilder(); A value can be added to the config with ModConfigBuilder#define which takes a name and a default value. For integer and double values a minimum and maximum value are also required. Test code block; ModConfigBuilder#define returns a Supplier which should be stored to retrieve the value from the config. Supplier<Boolean> booleanValue = builder .define( "booleanValue" , true ); Supplier<Integer> integerValue = builder .define( "integerValue" , 5 , 0 , 10 ); Supplier<Double> doubleValue = builder .define( "doubleValue" , 0.5 , 0 , 1 ); Supplier<ExampleEnum> enumValue = builder .define( "enumValue" , ExampleEnum. VALUE_1 ); A comment can be added to a value by calling ModConfigBuilder#comment(String) before defining the value. Supplier<Boolean> valueWithComment = builder .comment( "this is a comment for 'valueWithComment'" ).define( "valueWithComment " , true ); By default values are reloaded when world is loaded. This can be changed to only reload a value when Minecraft launches by calling ModConfigBuilder#gameRestart() before defining the value. Supplier<Boolean> notReloadedValue = builder .comment( "this is value will not be reloaded" ).define( "notReloadedValue" , true ); Values in COMMON or SERVER configs are synchronized with clients by default, to prevent this use ModConfigBuilder#dontSync(). Supplier<Boolean> notSynchronizedValue = builder .comment( "this is value will not be synchronized" ).define( "notSynchronizedValue" , true ); Values can also be put into categories. ModConfigBuilder#push(String) pushes a category and ModConfigBuilder#pop() pops a category. builder .push( "special" ); Supplier<Boolean> specialValue = builder .comment( "this value is in the 'special' category" ).define( "specialValue" , true ); builder .pop(); A comment can be added to the active category using ModConfigBuilder#categoryComment(String). builder .push( "client" ).categoryComment( "this, is a comment for the 'client' category" ); After defining all values ModConfigBuilder#build() must be called to finish the config. builder .build(); Now the values in your config will reloaded and synced automatically and the values can be retrieved using the stored Supplier instances. This will work for all available versions, that includes Minecraft 1.12, 1.14, 1.15, and 1.16 Example Mod: For a concrete example of how to use Config Lib checkout the example mod . Discord For future content, upcoming mods, and discussion, feel free to join the SuperMartijn642 discord server!
FreeMinecraftMods decision guide
This mod is most relevant to players looking for API and Library on Fabric, Quilt, Forge, NeoForge. Treat those labels as discovery hints, then verify the exact file and dependency list on the official project page.
The source record was updated on Jun 23, 2026, which is a recent freshness signal. A recent date does not guarantee support for every loader or Minecraft version, so still inspect the current file list.
What to verify before choosing a file
- Confirm that the file is published by the credited creator on the linked official source.
- Match the Minecraft version exactly instead of relying only on a broad category label.
- Read dependencies, incompatibilities, and changelog notes before updating an existing instance.
- Match the loader or server platform and its required version. Forge and NeoForge are not interchangeable.
- Back up worlds and configuration files before testing the project in a long-term save or public server.
Compatibility at a glance
Minecraft versions in this snapshot: 1.18, 1.17.1, 1.17, 1.16.3, 1.16.1, 1.16, 1.16.5, 1.16.4, 1.16.2, 1.15, 1.15.2, 1.15.1
Loaders and platforms: Fabric, Quilt, Forge, NeoForge
Before you install
Match the exact Minecraft version and loader, install every required dependency, and test in a separate profile before opening an important world. Keep a backup before changing a working mod list.
Source, licensing, and corrections
FreeMinecraftMods does not mirror the project files. Use the official source for downloads, release notes, dependencies, support, and licensing details. Project names, images, and creator-written descriptions remain the property of their respective owners.
How listings are reviewed | Report incorrect project information | Rights-holder and DMCA information
This source record is available for discovery, but it does not yet contain enough verified description, classification, image, freshness, or compatibility information to be indexed as a full editorial page. It is therefore marked noindex and is not eligible for advertising.
