wrapper/build: include pynvim in python3.extraPackages by default

This commit is contained in:
Gerg-L 2026-02-16 18:44:12 -05:00 committed by Ching Pei Yang
commit 2dd31dc830

View file

@ -94,7 +94,7 @@
nodeJs.enable = config.vim.withNodeJs; nodeJs.enable = config.vim.withNodeJs;
python3 = { python3 = {
enable = config.vim.withPython3; enable = config.vim.withPython3;
extraPackages = ps: map (flip builtins.getAttr ps) config.vim.python3Packages; extraPackages = ps: (map (flip builtins.getAttr ps) config.vim.python3Packages) ++ [ps.pynvim];
}; };
}; };