1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/by-name/jupytext/default.nix
saygo-png 5da3805559 plugins/jupytext: drop settings declarations
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-10-27 03:03:18 +00:00

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;
}