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.
Type: null or boolean or raw lua code
Default:
null
Plugin default: true
Declared by:
plugins.baleia.settings.colors
Table mapping 256 color codes to vim colors.
Type: null or string or raw lua code
Default:
null
Plugin default: "NR_8"
Declared by:
plugins.baleia.settings.line_starts_at
At which column start colorizing.
Type: null or signed integer or floating point number or raw lua code
Default:
null
Plugin default: 1
Declared by:
plugins.baleia.settings.log
Log level, possible values are ERROR, WARN, INFO or DEBUG.
Type: null or one of “ERROR”, “WARN”, “INFO”, “DEBUG” or raw lua code
Default:
null
Plugin default: "INFO"
Declared by:
plugins.baleia.settings.name
Prefix used to name highlight groups.
Type: null or string or raw lua code
Default:
null
Plugin default: "BaleiaColors"
Declared by:
plugins.baleia.settings.strip_ansi_codes
Remove ANSI color codes from text.
Type: null or boolean or raw lua code
Default:
null
Plugin default: true
Declared by: