Added Missing Config

This commit is contained in:
Amelia Wheeler 2024-04-10 09:29:59 -04:00
parent e1cb3c3a93
commit fdae440ab6
2 changed files with 44 additions and 0 deletions

View File

@ -38,6 +38,20 @@
}
]
},
"azurerm": {
"default": {
"disabled": false,
"format": "on [$symbol($subscription)]($style) ",
"style": "blue bold",
"subscription_aliases": {},
"symbol": "󰠅 "
},
"allOf": [
{
"$ref": "#/definitions/AzureRMConfig"
}
]
},
"battery": {
"default": {
"charging_symbol": "󰂄 ",
@ -1979,6 +1993,35 @@
},
"additionalProperties": false
},
"AzureRMConfig": {
"type": "object",
"properties": {
"format": {
"default": "on [$symbol($subscription)]($style) ",
"type": "string"
},
"symbol": {
"default": "󰠅 ",
"type": "string"
},
"style": {
"default": "blue bold",
"type": "string"
},
"disabled": {
"default": false,
"type": "boolean"
},
"subscription_aliases": {
"default": {},
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"additionalProperties": false
},
"BatteryConfig": {
"type": "object",
"properties": {

View File

@ -108,6 +108,7 @@ pub const PROMPT_ORDER: &[&str] = &[
"gcloud",
"openstack",
"azure",
"azurerm",
"direnv",
"env_var",
"crystal",