typst-preview
URL: https://github.com/chomosuke/typst-preview.nvim/
Maintainers: Gaetan Lepage
A Neovim plugin for previewing Typst documents in a web browser, with support for live reloading.
plugins.typst-preview.enable
Whether to enable typst-preview.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.typst-preview.package
The typst-preview package to use.
Type: package
Default:
pkgs.vimPlugins.typst-preview-nvim
Declared by:
plugins.typst-preview.autoLoad
Whether to automatically load typst-preview when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.typst-preview.callSetup
Whether to generate the standard require('typst-preview').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.typst-preview.settings
Options provided to the require('typst-preview').setup function.
Type: lua value
Default:
{ }
Example:
{
debug = true;
dependencies_bin = {
tinymist = "tinymist";
websocat = "websocat";
};
port = 8000;
}
Declared by: