Skip to content

Commit 6ef639f

Browse files
committed
feat: drop the legacy neovimUtils.makeNeovimConfig
Honestly, that was a lot simpler to "fix" then I realized. Thanks Nixpkgs for keeping it easy :) Fixes #76.
1 parent 1148a2a commit 6ef639f

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
lib,
3-
neovimUtils,
43
wrapNeovimUnstable,
54

65
neovim-unwrapped,
@@ -10,18 +9,17 @@
109
plugins,
1110
config,
1211
}:
13-
wrapNeovimUnstable neovim-unwrapped (neovimUtils.makeNeovimConfig {
12+
wrapNeovimUnstable neovim-unwrapped {
1413
# withPython3 = true;
1514
# withNodeJs = false;
1615
# withRuby = true;
1716

1817
inherit plugins;
1918

2019
wrapRc = false;
21-
} // {
2220
wrapperArgs = lib.escapeShellArgs [
2321
"--prefix" "PATH" ":" "${lib.makeBinPath bins}"
2422
"--add-flags" "-u"
2523
"--add-flags" "${config}"
2624
];
27-
})
25+
}

0 commit comments

Comments
 (0)