feat: add codecompanion

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-11-20 18:05:17 +01:00
parent 03e25b6d01
commit cf8c5f65b8
Signed by: lander
GPG key ID: 0142722B4B0C536F

30
plugins/codecompanion.nix Normal file
View file

@ -0,0 +1,30 @@
{
plugins.codecompanion = {
enable = true;
settings = {
display = {
action_palette = {
opts = {
show_default_prompt_library = true;
};
provider = "default";
};
chat = {
window = {
layout = "vertical";
opts = {
breakindent = true;
};
};
};
};
strategies = {
agent.adapter = "gemini";
chat.adapter = "gemini";
inline.adapter = "gemini";
};
};
};
}