plugins.edgy.settings.animate.spinner

Spinner for pinned views that are loading.

Type: null or lua code string or (attribute set of anything)

Default: null

Plugin default:

{
  frames = [
    "⠋"
    "⠙"
    "⠹"
    "⠸"
    "⠼"
    "⠴"
    "⠦"
    "⠧"
    "⠇"
    "⠏"
  ];
  interval = 80;
}

Example: "require('noice.util.spinners').spinners.circleFull"

Declared by:

plugins.edgy.settings.animate.spinner.frames

Frame characters.

Type: null or (list of (string or raw lua code))

Default: null

Plugin default:

[
  "⠋"
  "⠙"
  "⠹"
  "⠸"
  "⠼"
  "⠴"
  "⠦"
  "⠧"
  "⠇"
  "⠏"
]

plugins.edgy.settings.animate.spinner.interval

Interval time between two consecutive frames.

Type: null or unsigned integer, meaning >=0, or raw lua code

Default: null

Plugin default: 80