plugins.edgy.settings.animate.enabled

Whether to enable animations.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

Declared by:

plugins.edgy.settings.animate.cps

Cells per second.

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

Default: null

Plugin default: 120

Declared by:

plugins.edgy.settings.animate.fps

Frames per second.

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

Default: null

Plugin default: 100

Declared by:

plugins.edgy.settings.animate.on_begin

Callback for the beginning of animations.

Type: null or lua function string

Default: null

Plugin default:

function()
  vim.g.minianimate_disable = true
end

Declared by:

plugins.edgy.settings.animate.on_end

Callback for the ending of animations.

Type: null or lua function string

Default: null

Plugin default:

function()
  vim.g.minianimate_disable = false
end

Declared by:

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: