I wonder, if there's a way to define a default user setting.
E.g. a user, entering the NR instance for the first time, should get default configuration in .config.user.json. This could be a separate - manual edited (or copied) - entry containing these settings. Here's an easy example, but this could be valid for all values.
{
"*": {
"editor": {
"sidebar": {
"order": [
"debug",
"help",
"context",
"config",
"info",
"version-control"
]
}
}
}
}
Here user "*"
represents the default config. If user johndoe opens the NR instance for the first time, the "*"
config is used and moved to "johndoe"
. Of Course, the user then can then change and expand to his/her needs.