mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
28 lines
565 B
Nix
28 lines
565 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "jupytext";
|
|
package = "jupytext-nvim";
|
|
description = "Jupyter notebooks on Neovim powered by Jupytext.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
style = "light";
|
|
output_extension = "auto";
|
|
force_ft = null;
|
|
custom_language_formatting = {
|
|
python = {
|
|
extension = "md";
|
|
style = "markdown";
|
|
force_ft = "markdown";
|
|
};
|
|
};
|
|
};
|
|
|
|
dependencies = [ "jupytext" ];
|
|
|
|
inherit (import ./deprecations.nix lib) imports;
|
|
}
|