mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 12:25:47 +02:00
Add SpinnerConfig
This new config section allows to customize frames and rate of thespinner
This commit is contained in:
parent
53f0c4aeff
commit
f3dba743f0
15 changed files with 101 additions and 31 deletions
|
@ -366,6 +366,32 @@
|
|||
],
|
||||
"description": "How things are filtered when typing '/'.\nOne of 'substring' (default) | 'fuzzy'",
|
||||
"default": "substring"
|
||||
},
|
||||
"spinner": {
|
||||
"properties": {
|
||||
"frames": {
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array",
|
||||
"description": "The frames of the spinner animation.",
|
||||
"default": [
|
||||
"|",
|
||||
"/",
|
||||
"-",
|
||||
"\\"
|
||||
]
|
||||
},
|
||||
"rate": {
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"description": "The \"speed\" of the spinner in milliseconds.",
|
||||
"default": 50
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "Config relating to the spinner."
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue