We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b584f0 commit 5fc41a2Copy full SHA for 5fc41a2
1 file changed
flake.nix
@@ -36,10 +36,12 @@
36
}) l_pkg_enum);
37
in l_pkg_main // l_pkg_sets // {
38
vimPlugins = prev.vimPlugins // {
39
- ${APPNAME} = final.neovimUtils.buildNeovimPlugin {
40
- pname = APPNAME;
41
- version = "dev";
42
- src = self;
+ ${APPNAME} = (final.neovimUtils.buildNeovimPlugin { pname = APPNAME; }).overrideAttrs {
+ extraConfig = ''
+ -- to create a flat hierarchy
+ lua_modules_path = "lua"
43
+ lib_modules_path = "lua"
44
+ '';
45
};
46
47
0 commit comments