plugins.vimtex.settings

The configuration options for vimtex without the vimtex_ prefix.

Example: To set vimtex_foo_bar to 1, write

  settings = {
    foo_bar = true;
  };

Type: attribute set of anything

Default: { }

Example:

{
  compiler_method = "latexrun";
  toc_config = {
    split_pos = "vert topleft";
    split_width = 40;
  };
  view_method = "zathura";
}

Declared by:

plugins.vimtex.settings.view_method

Set the viewer method. By default, a generic viewer is used through the general view method (e.g. xdg-open on Linux).

Type: string

Default: "general"

Example: "zathura"

Declared by: