night-config
night-config copied to clipboard
Prettier toml serialization?
I've noticed that in older versions toml is serialized like this:
[category]
option1 = true
option2 = false
but now it's serialized like this:
category = {option1 = true, option2=false}
Is there an option to switch to the older formatting?