Nushell settings. These will be flattened and assigned one by one to $env.config
to avoid overwriting the default or existing options.
For example:
{
show_banner = false;
completions.external = {
enable = true;
max_results = 200;
};
}
becomes:
$env.config.completions.external.enable = true
$env.config.completions.external.max_results = 200
$env.config.show_banner = false