plugins/copilot-vim: bump node.js to 20.x version

This commit is contained in:
Heitor Augusto 2025-04-06 11:54:24 -03:00 committed by Gaétan Lepage
parent 90c3f2468e
commit 50e9895c2c

View file

@ -24,8 +24,8 @@ lib.nixvim.plugins.mkVimPlugin {
settingsOptions = { settingsOptions = {
node_command = mkOption { node_command = mkOption {
type = with types; nullOr str; type = with types; nullOr str;
default = lib.getExe pkgs.nodejs-18_x; default = lib.getExe pkgs.nodejs_20;
defaultText = lib.literalExpression "lib.getExe pkgs.nodejs-18_x"; defaultText = lib.literalExpression "lib.getExe pkgs.nodejs_20";
description = "Tell Copilot what `node` binary to use."; description = "Tell Copilot what `node` binary to use.";
}; };