mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-29 02:34:17 -05:00
Add jupytext python3Dependency to jupytext plugin
This commit is contained in:
@@ -61,4 +61,21 @@ helpers.neovim-plugin.mkNeovimPlugin {
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
extraOptions = {
|
||||
python3Dependencies = mkOption {
|
||||
type = with types; functionTo (listOf package);
|
||||
default =
|
||||
p: with p; [
|
||||
jupytext
|
||||
];
|
||||
defaultText = literalExpression ''
|
||||
p: with p; [
|
||||
jupytext
|
||||
]
|
||||
'';
|
||||
description = "Python packages to add to the `PYTHONPATH` of neovim.";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user