mirror of
https://github.com/starship/starship.git
synced 2025-03-01 08:41:27 +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": {
|
"battery": {
|
||||||
"default": {
|
"default": {
|
||||||
"charging_symbol": " ",
|
"charging_symbol": " ",
|
||||||
@ -1979,6 +1993,35 @@
|
|||||||
},
|
},
|
||||||
"additionalProperties": false
|
"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": {
|
"BatteryConfig": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -108,6 +108,7 @@ pub const PROMPT_ORDER: &[&str] = &[
|
|||||||
"gcloud",
|
"gcloud",
|
||||||
"openstack",
|
"openstack",
|
||||||
"azure",
|
"azure",
|
||||||
|
"azurerm",
|
||||||
"direnv",
|
"direnv",
|
||||||
"env_var",
|
"env_var",
|
||||||
"crystal",
|
"crystal",
|
||||||
|
Loading…
Reference in New Issue
Block a user