From cf8c5f65b81d0e9fe35fc16bcd7c101826ac2ea2 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Thu, 20 Nov 2025 18:05:17 +0100 Subject: [PATCH] feat: add codecompanion Signed-off-by: Lander Van den Bulcke --- plugins/codecompanion.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 plugins/codecompanion.nix diff --git a/plugins/codecompanion.nix b/plugins/codecompanion.nix new file mode 100644 index 0000000..2268b86 --- /dev/null +++ b/plugins/codecompanion.nix @@ -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"; + }; + }; + }; +}