plugins.markview.settings

Options provided to the require('markview').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  buf_ignore = [ ];
  hybrid_modes = [
    "i"
    "r"
  ];
  mode = [
    "n"
    "x"
  ];
}

Declared by:

plugins.markview.settings.buf_ignore

Buftypes to disable markview-nvim.

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

Default: null

Plugin default:

[
  "nofile"
]

Declared by:

plugins.markview.settings.hybrid_modes

Modes where hybrid mode is enabled.

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

Default: null

Plugin default: null

Declared by:

plugins.markview.settings.mode

Modes where preview is enabled.

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

Default: null

Plugin default:

[
  "n"
  "no"
]

Declared by: