nixvim/plugins/codecompanion.nix
Lander Van den Bulcke b4c1a7bcce
feat: add codecompanion
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-11-20 18:10:36 +01:00

30 lines
556 B
Nix

{
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";
};
};
};
}