mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 19:22:00 -05:00
33 lines
570 B
Nix
33 lines
570 B
Nix
{
|
|
plugins = {
|
|
copilot-chat.enable = true;
|
|
copilot-lua = {
|
|
enable = true;
|
|
suggestion = {
|
|
enabled = false;
|
|
autoTrigger = true;
|
|
keymap.accept = "<C-CR>";
|
|
};
|
|
panel.enabled = false;
|
|
};
|
|
|
|
which-key.settings.spec = [
|
|
{
|
|
__unkeyed-1 = "<leader>a";
|
|
mode = "n";
|
|
icon = "";
|
|
group = "+ai";
|
|
}
|
|
];
|
|
};
|
|
|
|
keymaps = [
|
|
{
|
|
action = "<cmd>CopilotChatToggle<CR>";
|
|
key = "<leader>ac";
|
|
options.desc = "Toggle Coilot chat";
|
|
mode = "n";
|
|
}
|
|
];
|
|
}
|