mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
plugins/jupytext: init
This commit is contained in:
parent
a94425245b
commit
b658169f11
3 changed files with 102 additions and 0 deletions
35
tests/test-sources/plugins/languages/python/jupytext.nix
Normal file
35
tests/test-sources/plugins/languages/python/jupytext.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue