mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-05 08:31:05 +01:00
plugins/copilot-vim: update nodejs
Copilot-vim started to complain about nodejs being too old and it recommends to update to 22
This commit is contained in:
parent
d5f23804b4
commit
69d72bb82d
1 changed files with 2 additions and 2 deletions
|
|
@ -24,8 +24,8 @@ lib.nixvim.plugins.mkVimPlugin {
|
|||
settingsOptions = {
|
||||
node_command = mkOption {
|
||||
type = with types; nullOr str;
|
||||
default = lib.getExe pkgs.nodejs_20;
|
||||
defaultText = lib.literalExpression "lib.getExe pkgs.nodejs_20";
|
||||
default = lib.getExe pkgs.nodejs_22;
|
||||
defaultText = lib.literalExpression "lib.getExe pkgs.nodejs_22";
|
||||
description = "Tell Copilot what `node` binary to use.";
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue