mirror of
https://github.com/starship/starship.git
synced 2026-06-22 02:02:12 +07:00
feat: add Raku module (#4048)
* feat: add Raku module * Update docs/config/README.md Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com> Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com>
This commit is contained in:
@@ -1091,6 +1091,31 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"raku": {
|
||||
"default": {
|
||||
"detect_extensions": [
|
||||
"p6",
|
||||
"pm6",
|
||||
"pod6",
|
||||
"raku",
|
||||
"rakumod"
|
||||
],
|
||||
"detect_files": [
|
||||
"META6.json"
|
||||
],
|
||||
"detect_folders": [],
|
||||
"disabled": false,
|
||||
"format": "via [$symbol($version-$vm_version )]($style)",
|
||||
"style": "149 bold",
|
||||
"symbol": "🦋 ",
|
||||
"version_format": "${raw}"
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/RakuConfig"
|
||||
}
|
||||
]
|
||||
},
|
||||
"red": {
|
||||
"default": {
|
||||
"detect_extensions": [
|
||||
@@ -3948,6 +3973,60 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"RakuConfig": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"format": {
|
||||
"default": "via [$symbol($version-$vm_version )]($style)",
|
||||
"type": "string"
|
||||
},
|
||||
"version_format": {
|
||||
"default": "${raw}",
|
||||
"type": "string"
|
||||
},
|
||||
"symbol": {
|
||||
"default": "🦋 ",
|
||||
"type": "string"
|
||||
},
|
||||
"style": {
|
||||
"default": "149 bold",
|
||||
"type": "string"
|
||||
},
|
||||
"disabled": {
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"detect_extensions": {
|
||||
"default": [
|
||||
"p6",
|
||||
"pm6",
|
||||
"pod6",
|
||||
"raku",
|
||||
"rakumod"
|
||||
],
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"detect_files": {
|
||||
"default": [
|
||||
"META6.json"
|
||||
],
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"detect_folders": {
|
||||
"default": [],
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"RedConfig": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user