neovim: support withNodeJs option

This commit is contained in:
Lee Henson 2018-11-27 11:21:37 +00:00 committed by Robert Helgesson
parent 9686d93ff6
commit 5d8b089188
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -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 {
type = types.bool;
default = true;
@ -125,7 +134,7 @@ in
inherit (cfg)
extraPython3Packages withPython3
extraPythonPackages withPython
withRuby viAlias vimAlias configure;
withNodeJs withRuby viAlias vimAlias configure;
})
];
};