2023-02-27 14:05:43 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib;
|
2023-05-10 09:11:33 +00:00
|
|
|
with builtins; let
|
|
|
|
cfg = config.vim.assistant.copilot;
|
|
|
|
in {
|
2023-02-27 14:05:43 +00:00
|
|
|
options.vim.assistant.copilot = {
|
2023-06-05 20:10:25 +00:00
|
|
|
enable = mkEnableOption "GitHub Copilot AI assistant";
|
2023-02-27 14:05:43 +00:00
|
|
|
|
2023-04-11 12:38:27 +00:00
|
|
|
panel = {
|
|
|
|
position = mkOption {
|
|
|
|
type = types.enum [
|
|
|
|
"bottom"
|
|
|
|
"top"
|
|
|
|
"left"
|
|
|
|
"right"
|
|
|
|
];
|
|
|
|
default = "bottom";
|
|
|
|
description = "Panel position";
|
|
|
|
};
|
|
|
|
ratio = mkOption {
|
|
|
|
type = types.float;
|
|
|
|
default = 0.4;
|
|
|
|
description = "Panel size";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-04-04 22:53:21 +00:00
|
|
|
mappings = {
|
|
|
|
panel = {
|
|
|
|
jumpPrev = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "[[";
|
|
|
|
description = "Jump to previous suggestion";
|
|
|
|
};
|
|
|
|
jumpNext = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "]]";
|
|
|
|
description = "Jump to next suggestion";
|
|
|
|
};
|
|
|
|
accept = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "<CR>";
|
|
|
|
description = "Accept suggestion";
|
|
|
|
};
|
|
|
|
refresh = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "gr";
|
|
|
|
description = "Refresh suggestions";
|
|
|
|
};
|
|
|
|
open = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "<M-CR>";
|
|
|
|
description = "Open suggestions";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
suggestion = {
|
|
|
|
accept = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "<M-l>";
|
|
|
|
description = "Accept suggetion";
|
|
|
|
};
|
|
|
|
acceptWord = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = "Accept next word";
|
|
|
|
};
|
|
|
|
acceptLine = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = "Accept next line";
|
|
|
|
};
|
|
|
|
prev = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "<M-[>";
|
|
|
|
description = "Previous suggestion";
|
|
|
|
};
|
|
|
|
next = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "<M-]>";
|
|
|
|
description = "Next suggestion";
|
|
|
|
};
|
|
|
|
dismiss = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = "<C-]>";
|
|
|
|
description = "Dismiss suggestion";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-02-27 14:05:43 +00:00
|
|
|
copilot_node_command = mkOption {
|
|
|
|
type = types.str;
|
2023-05-10 09:11:33 +00:00
|
|
|
default = "${lib.getExe cfg.copilotNodePackage}";
|
2023-02-27 14:05:43 +00:00
|
|
|
description = "Path to nodejs";
|
|
|
|
};
|
2023-05-10 09:11:33 +00:00
|
|
|
|
|
|
|
copilotNodePackage = mkOption {
|
2023-05-20 14:48:40 +00:00
|
|
|
type = with types; nullOr package; # TODO - maybe accept a path as well? imperative users might want to use something like nvm
|
|
|
|
default = pkgs.nodejs-slim; # this will likely need to be downgraded because Copilot does not stay up to date with NodeJS
|
|
|
|
description = "The package that will be used for Copilot. NodeJS v18 is recommended.";
|
2023-05-10 09:11:33 +00:00
|
|
|
};
|
2023-02-27 14:05:43 +00:00
|
|
|
};
|
|
|
|
}
|