plugins.render-markdown.settings.overrides.buftype

This lets you set nearly all the options available at a buftype level. Think of the top level configuration as the default where when the buftype match these override values are used instead. filetype takes precedence over buftype.

Type: null or (attribute set of (anything or raw lua code))

Default: null

Plugin default:

{
  nofile = {
    padding = {
      highlight = "NormalFloat";
    };
    sign = {
      enabled = false;
    };
  };
}

Example:

{
  nofile = {
    code = {
      left_pad = 0;
      right_pad = 0;
    };
  };
}

Declared by:

plugins.render-markdown.settings.overrides.filetype

This lets you set nearly all the options available at a filetype level. Think of the top level configuration as the default where when the filetype match these override values are used instead. filetype takes precedence over buftype.

Type: null or (attribute set of (anything or raw lua code))

Default: null

Plugin default: { }

Declared by: