Skip to content

Commit 5c38b35

Browse files
authored
Merge pull request #1415 from Gerg-L/python3Fix
wrapper/build: include pynvim in python3.extraPackages by default
1 parent 39345e5 commit 5c38b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/wrapper/build/config.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
nodeJs.enable = config.vim.withNodeJs;
9595
python3 = {
9696
enable = config.vim.withPython3;
97-
extraPackages = ps: map (flip builtins.getAttr ps) config.vim.python3Packages;
97+
extraPackages = ps: (map (flip builtins.getAttr ps) config.vim.python3Packages) ++ [ps.pynvim];
9898
};
9999
};
100100

0 commit comments

Comments
 (0)