Configuration Format #1
Unanswered
Sammy99jsp
asked this question in
Q&A
Replies: 6 comments 9 replies
JSON5 + JSON Schema
Example Config{
keybinds: {
// Open up a UI that lets the user quickly go through their open windows.
enumerateWindows: "Super+Tab",
}
} |
0 replies
|
use properties files (they're smaller and also resemble unix more ig) |
2 replies
|
A Brainf**k executable that outputs the data. Seriously tho, I am in support for good old simple .conf and avoid anything to do with any languages like .properties (often associated with java) .json (javascript) etc... |
5 replies
|
imo I think json or alike are good for config files but they contain massive overhead like the {...} formatting, so me personally, id go with either .yaml format: category:
subcategory:
- key: valueor the .ini format: [category]
key: value |
1 reply
|
Might be too much out of there, but what about toml? |
1 reply
|
Maybe in INI? https://en.wikipedia.org/wiki/INI_file |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
So, currently I'm writing some of the configuration system for the compositor and I want your opinions (🧅s) on file formats.
Some criteria:
Anyway, have at it. I'll suggest some ideas to get the ball rolling.
All reactions