mirror of
https://github.com/starship/starship.git
synced 2026-06-22 02:02:12 +07:00
feat(guix_shell): Initial implementation (#4397)
* feat(guix_shell): Initial implementation (#3999) * fix(guix_shell): Change guix nerd font icon to water buffalo emoji * fix(guix_shell): Added guix_shell entries in preset files * fix(guix_shell): Moved guix_shell config docs in to the correct place (alphabetically)
This commit is contained in:
committed by
GitHub
parent
c3cd499a30
commit
d4bcc519e6
@@ -620,6 +620,19 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"guix_shell": {
|
||||
"default": {
|
||||
"disabled": false,
|
||||
"format": "via [$symbol]($style) ",
|
||||
"style": "yellow bold",
|
||||
"symbol": "🐃 "
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/GuixShellConfig"
|
||||
}
|
||||
]
|
||||
},
|
||||
"haskell": {
|
||||
"default": {
|
||||
"detect_extensions": [
|
||||
@@ -3091,6 +3104,28 @@
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"GuixShellConfig": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"format": {
|
||||
"default": "via [$symbol]($style) ",
|
||||
"type": "string"
|
||||
},
|
||||
"symbol": {
|
||||
"default": "🐃 ",
|
||||
"type": "string"
|
||||
},
|
||||
"style": {
|
||||
"default": "yellow bold",
|
||||
"type": "string"
|
||||
},
|
||||
"disabled": {
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"HaskellConfig": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user