We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
neovimUtils.makeNeovimConfig
1 parent 1148a2a commit 6ef639fCopy full SHA for 6ef639f
1 file changed
modules/home-manager/my/programs/neovim/package.nix
@@ -1,6 +1,5 @@
1
{
2
lib,
3
- neovimUtils,
4
wrapNeovimUnstable,
5
6
neovim-unwrapped,
@@ -10,18 +9,17 @@
10
9
plugins,
11
config,
12
}:
13
-wrapNeovimUnstable neovim-unwrapped (neovimUtils.makeNeovimConfig {
+wrapNeovimUnstable neovim-unwrapped {
14
# withPython3 = true;
15
# withNodeJs = false;
16
# withRuby = true;
17
18
inherit plugins;
19
20
wrapRc = false;
21
-} // {
22
wrapperArgs = lib.escapeShellArgs [
23
"--prefix" "PATH" ":" "${lib.makeBinPath bins}"
24
"--add-flags" "-u"
25
"--add-flags" "${config}"
26
];
27
-})
+}
0 commit comments