Added: Nixvim modules

This commit is contained in:
2026-01-27 00:48:01 +01:00
parent de5c0feaa3
commit 3ce95ebe41
12 changed files with 231 additions and 56 deletions

18
home/neovim/jupytext.nix Normal file
View File

@@ -0,0 +1,18 @@
{ ... }: {
# Jupytext: Execute Jupyter notebooks directly in Neovim
programs.nixvim.jupytext = {
enable = true;
settings = {
custom_language_formatting = {
python = {
extension = "md";
force_ft = "markdown";
style = "markdown";
};
};
force_ft = null;
output_extension = "auto";
style = "light";
};
};
}