mirror of
https://github.com/starship/starship.git
synced 2025-03-01 00:33:17 +01:00
Added Missing Config
This commit is contained in:
parent
e1cb3c3a93
commit
fdae440ab6
43
.github/config-schema.json
vendored
43
.github/config-schema.json
vendored
@ -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": {
|
||||
|
@ -108,6 +108,7 @@ pub const PROMPT_ORDER: &[&str] = &[
|
||||
"gcloud",
|
||||
"openstack",
|
||||
"azure",
|
||||
"azurerm",
|
||||
"direnv",
|
||||
"env_var",
|
||||
"crystal",
|
||||
|
Loading…
Reference in New Issue
Block a user