plugins.baleia.settings

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

Type: attribute set of anything

Default: { }

Example:

{
  async = true;
  colors = "NR_8";
  line_starts_at = 1;
  log = "INFO";
  name = "BaleiaColors";
  strip_ansi_codes = true;
}

Declared by:

plugins.baleia.settings.async

Highlight asynchronously.

Plugin default: true

Type: null or boolean or raw lua code

Default: null

Declared by:

plugins.baleia.settings.colors

Table mapping 256 color codes to vim colors.

Plugin default: "NR_8"

Type: null or string or raw lua code

Default: null

Declared by:

plugins.baleia.settings.line_starts_at

At which column start colorizing.

Plugin default: 1

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

Default: null

Declared by:

plugins.baleia.settings.log

Log level, possible values are ERROR, WARN, INFO or DEBUG.

Plugin default: "INFO"

Type: null or one of “ERROR”, “WARN”, “INFO”, “DEBUG” or raw lua code

Default: null

Declared by:

plugins.baleia.settings.name

Prefix used to name highlight groups.

Plugin default: "BaleiaColors"

Type: null or string or raw lua code

Default: null

Declared by:

plugins.baleia.settings.strip_ansi_codes

Remove ANSI color codes from text.

Plugin default: true

Type: null or boolean or raw lua code

Default: null

Declared by: