neovim: support withNodeJs option
This commit is contained in:
parent
9686d93ff6
commit
5d8b089188
|
@ -47,6 +47,15 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
withNodeJs = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Enable node provider. Set to <literal>true</literal> to
|
||||||
|
use Node plugins.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
withPython = mkOption {
|
withPython = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = true;
|
||||||
|
@ -125,7 +134,7 @@ in
|
||||||
inherit (cfg)
|
inherit (cfg)
|
||||||
extraPython3Packages withPython3
|
extraPython3Packages withPython3
|
||||||
extraPythonPackages withPython
|
extraPythonPackages withPython
|
||||||
withRuby viAlias vimAlias configure;
|
withNodeJs withRuby viAlias vimAlias configure;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue