plugins.snacks.settings.bigfile.enabled

Whether to enable bigfile plugin.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

Declared by:

plugins.snacks.settings.bigfile.notify

Whether to show notification when big file detected.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

Declared by:

plugins.snacks.settings.bigfile.setup

Enable or disable features when a big file is detected.

Type: null or raw lua code

Default: null

Plugin default:

lib.nixvim.mkRaw ''
  function(ctx)
    vim.b.minianimate_disable = true
    vim.schedule(function()
      vim.bo[ctx.buf].syntax = ctx.ft
    end)
  end
''

Declared by:

plugins.snacks.settings.bigfile.size

The size at which a file is considered big.

Type: null or signed integer or floating point number or raw lua code

Default: null

Plugin default:

{
  __raw = "1.5 * 1024 * 1024";
}

Declared by: