Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

jupytext

URL: https://github.com/GCBallesteros/jupytext.nvim/

Maintainers: Gaetan Lepage


Jupyter notebooks on Neovim powered by Jupytext.

plugins.jupytext.enable

Whether to enable jupytext.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.jupytext.package

The jupytext package to use.

Type: package

Default:

pkgs.vimPlugins.jupytext-nvim

Declared by:

plugins.jupytext.autoLoad

Whether to automatically load jupytext when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.jupytext.callSetup

Whether to generate the standard require('jupytext').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.jupytext.settings

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

Type: lua value

Default:

{ }

Example:

{
  custom_language_formatting = {
    python = {
      extension = "md";
      force_ft = "markdown";
      style = "markdown";
    };
  };
  force_ft = null;
  output_extension = "auto";
  style = "light";
}

Declared by: