1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-12 13:36:06 +01:00
nixvim/tests/test-sources/plugins/by-name/jupytext/default.nix
2024-09-09 14:34:18 -05:00

35 lines
625 B
Nix

{
empty = {
plugins.jupytext.enable = true;
};
defaults = {
plugins.jupytext = {
enable = true;
settings = {
style = "hydrogen";
output_extension = "auto";
force_ft = null;
custom_language_formatting = { };
};
};
};
example = {
plugins.jupytext = {
enable = true;
settings = {
style = "light";
output_extension = "auto";
force_ft = null;
custom_language_formatting.python = {
extension = "md";
style = "markdown";
force_ft = "markdown";
};
};
};
};
}