2023-02-27 15:05:43 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-07 01:50:27 +01:00
|
|
|
}: let
|
2023-11-14 08:18:32 +01:00
|
|
|
inherit (builtins) toJSON;
|
2024-11-04 16:50:50 +01:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.strings) optionalString;
|
2023-11-07 01:50:27 +01:00
|
|
|
|
2023-02-27 15:05:43 +01:00
|
|
|
cfg = config.vim.assistant.copilot;
|
2023-04-22 17:30:32 +02:00
|
|
|
|
|
|
|
wrapPanelBinding = luaFunction: key: ''
|
|
|
|
function()
|
|
|
|
local s, _ = pcall(${luaFunction})
|
|
|
|
|
|
|
|
if not s then
|
2023-11-14 08:18:32 +01:00
|
|
|
local termcode = vim.api.nvim_replace_termcodes(${toJSON key}, true, false, true)
|
2023-04-22 17:30:32 +02:00
|
|
|
|
|
|
|
vim.fn.feedkeys(termcode, 'n')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
'';
|
2024-11-04 16:50:50 +01:00
|
|
|
|
|
|
|
mkLuaKeymap = mode: key: action: desc: opts:
|
|
|
|
opts
|
|
|
|
// {
|
|
|
|
inherit mode key action desc;
|
|
|
|
lua = true;
|
|
|
|
};
|
2023-02-27 15:05:43 +01:00
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
2024-11-04 16:50:50 +01:00
|
|
|
vim = {
|
|
|
|
lazy.plugins = {
|
|
|
|
copilot-lua = {
|
|
|
|
package = "copilot-lua";
|
|
|
|
setupModule = "copilot";
|
|
|
|
inherit (cfg) setupOpts;
|
|
|
|
after = mkIf cfg.cmp.enable "require('copilot_cmp').setup()";
|
2023-02-27 15:05:43 +01:00
|
|
|
|
2024-11-04 16:50:50 +01:00
|
|
|
cmd = ["Copilot" "CopilotAuth" "CopilotDetach" "CopilotPanel" "CopilotStop"];
|
|
|
|
keys = [
|
|
|
|
(mkLuaKeymap ["n"] cfg.mappings.panel.accept (wrapPanelBinding ''require("copilot.panel").accept'' cfg.mappings.panel.accept) "[copilot] Accept suggestion" {})
|
|
|
|
(mkLuaKeymap ["n"] cfg.mappings.panel.jumpNext (wrapPanelBinding "require(\"copilot.panel\").jump_next" cfg.mappings.panel.jumpNext) "[copilot] Accept suggestion" {})
|
|
|
|
(mkLuaKeymap ["n"] cfg.mappings.panel.jumpPrev (wrapPanelBinding "require(\"copilot.panel\").jump_prev" cfg.mappings.panel.jumpPrev) "[copilot] Accept suggestion" {})
|
|
|
|
(mkLuaKeymap ["n"] cfg.mappings.panel.refresh (wrapPanelBinding "require(\"copilot.panel\").refresh" cfg.mappings.panel.refresh) "[copilot] Accept suggestion" {})
|
|
|
|
(mkLuaKeymap ["n"] cfg.mappings.panel.open (wrapPanelBinding ''
|
|
|
|
function() require("copilot.panel").open({ position = "${cfg.setupOpts.panel.layout.position}", ratio = ${toString cfg.setupOpts.panel.layout.ratio}, }) end
|
|
|
|
''
|
|
|
|
cfg.mappings.panel.open) "[copilot] Accept suggestion" {})
|
2024-10-09 19:50:34 +02:00
|
|
|
|
2024-11-04 16:50:50 +01:00
|
|
|
(mkLuaKeymap ["i"] cfg.mappings.suggestion.accept "function() require('copilot.suggestion').accept() end" "[copilot] Accept suggestion" {})
|
|
|
|
(mkLuaKeymap ["i"] cfg.mappings.suggestion.acceptLine "function() require('copilot.suggestion').accept_line() end" "[copilot] Accept suggestion (line)" {})
|
|
|
|
(mkLuaKeymap ["i"] cfg.mappings.suggestion.acceptWord "function() require('copilot.suggestion').accept_word() end" "[copilot] Accept suggestion (word)" {})
|
|
|
|
(mkLuaKeymap ["i"] cfg.mappings.suggestion.dismiss "function() require('copilot.suggestion').dismiss() end" "[copilot] dismiss suggestion" {})
|
|
|
|
(mkLuaKeymap ["i"] cfg.mappings.suggestion.next "function() require('copilot.suggestion').next() end" "[copilot] next suggestion" {})
|
|
|
|
(mkLuaKeymap ["i"] cfg.mappings.suggestion.prev "function() require('copilot.suggestion').prev() end" "[copilot] previous suggestion" {})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2023-04-11 14:38:27 +02:00
|
|
|
|
2024-11-04 16:50:50 +01:00
|
|
|
autocomplete.nvim-cmp = {
|
|
|
|
sources = {copilot = "[Copilot]";};
|
|
|
|
sourcePlugins = ["copilot-cmp"];
|
2024-02-17 13:51:05 +01:00
|
|
|
};
|
2024-11-04 16:50:50 +01:00
|
|
|
|
|
|
|
# Disable plugin handled keymaps.
|
|
|
|
# Setting it here so that it doesn't show up in user docs
|
|
|
|
assistant.copilot.setupOpts = {
|
|
|
|
panel.keymap = {
|
|
|
|
jump_prev = lib.mkDefault false;
|
|
|
|
jump_next = lib.mkDefault false;
|
|
|
|
accept = lib.mkDefault false;
|
|
|
|
refresh = lib.mkDefault false;
|
|
|
|
open = lib.mkDefault false;
|
|
|
|
};
|
|
|
|
suggestion.keymap = {
|
|
|
|
accept = lib.mkDefault false;
|
|
|
|
accept_word = lib.mkDefault false;
|
|
|
|
accept_line = lib.mkDefault false;
|
|
|
|
next = lib.mkDefault false;
|
|
|
|
prev = lib.mkDefault false;
|
|
|
|
dismiss = lib.mkDefault false;
|
|
|
|
};
|
2024-02-17 13:51:05 +01:00
|
|
|
};
|
|
|
|
};
|
2023-02-27 15:05:43 +01:00
|
|
|
};
|
|
|
|
}
|