plugins/jupytext: init

This commit is contained in:
Gaetan Lepage 2024-03-23 15:46:55 +01:00 committed by Gaétan Lepage
parent a94425245b
commit b658169f11
3 changed files with 102 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{
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";
};
};
};
};
}