CurseForge · Minecraft mod
SuperMartijn642's Config Lib
Config Lib makes dealing with config files just a bit easier.
This page is having a moment, so a few details may be a little behind.
Quick answer
Which SuperMartijn642's Config Lib release should I use?
SuperMartijn642's Config Library 1.1.8 for Fabric 26.2 targets 26.2 with Fabric, Quilt. The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server. All 1 required mods have matching files.
Where it goes
Is SuperMartijn642's Config Lib required on the client, server, or both?
The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.
The source does not explicitly classify this release as client-only or server-only.
What else does SuperMartijn642's Config Library 1.1.8 for Fabric 26.2 need?
SuperMartijn642's Config Library 1.1.8 for Fabric 26.2. Change the file and its required mods may change too.
Install Fabric API first. We found matching files for this game-version and loader setup.
We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add SuperMartijn642's Config Lib without breaking your instance.
Built for SuperMartijn642's Config Library 1.1.8 for Fabric 26.2. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use SuperMartijn642's Config Library 1.1.8 for Fabric 26.2. It targets 26.2 with Fabric, Quilt; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install Fabric API first. We found matching files for this game-version and loader setup.
- 03
Put it on the correct side
The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.
- 04
Pick the file you checked
Use the “Get this file” button beside SuperMartijn642's Config Library 1.1.8 for Fabric 26.2. It opens that exact file at the source.
About this project
What does SuperMartijn642's Config Lib add?

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!

Project description from CurseForge.
Pick your setup
SuperMartijn642's Config Lib by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.2
4 loader builds26.1.2
4 loader builds26.1.1
4 loader builds26.1
4 loader builds1.21.11
4 loader builds1.21.10
4 loader builds1.21.9
4 loader builds1.21.8
4 loader builds1.21.7
4 loader builds1.21.6
4 loader builds1.21.5
4 loader builds1.21.4
4 loader buildsShowing the newest 12 of 50 game versions. Older files are in the list below.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
SuperMartijn642's Config Lib versions and loaders
SuperMartijn642's Config Library 1.1.8 for Fabric 26.2
supermartijn642configlib-1.1.8-fabric-mc26.2.jar
23 Jun 2026
SuperMartijn642's Config Library 1.1.8 for Fabric 26.1
supermartijn642configlib-1.1.8-fabric-mc26.1.jar
23 Jun 2026
SuperMartijn642's Config Library 1.1.8 for Forge 26.2
supermartijn642configlib-1.1.8-forge-mc26.2.jar
23 Jun 2026
SuperMartijn642's Config Library 1.1.8 for Forge 26.1
supermartijn642configlib-1.1.8-forge-mc26.1.jar
23 Jun 2026
SuperMartijn642's Config Library 1.1.8 for NeoForge 26.2
supermartijn642configlib-1.1.8-neoforge-mc26.2.jar
23 Jun 2026
SuperMartijn642's Config Library 1.1.8 for NeoForge 26.1
supermartijn642configlib-1.1.8-neoforge-mc26.1.jar
23 Jun 2026
SuperMartijn642's Config Library 1.1.8 for NeoForge 1.21.11
supermartijn642configlib-1.1.8-neoforge-mc1.21.11.jar
25 Dec 2025
SuperMartijn642's Config Library 1.1.8 for Fabric 1.21.11
supermartijn642configlib-1.1.8-fabric-mc1.21.11.jar
25 Dec 2025
SuperMartijn642's Config Library 1.1.8 for Forge 1.21.11
supermartijn642configlib-1.1.8-forge-mc1.21.11.jar
25 Dec 2025
SuperMartijn642's Config Library 1.1.8 for NeoForge 1.21.9
supermartijn642configlib-1.1.8-neoforge-mc1.21.9.jar
3 Oct 2025
SuperMartijn642's Config Library 1.1.8 for Forge 1.21.6
supermartijn642configlib-1.1.8-forge-mc1.21.6.jar
30 Jun 2025
SuperMartijn642's Config Library 1.1.8 for NeoForge 1.21
supermartijn642configlib-1.1.8-neoforge-mc1.21.jar
19 Jul 2024
Looking for an older file? The official CurseForge project page is in Resources.
