diff --git a/home-manager/nixvim/default.nix b/home-manager/nixvim/default.nix
index 695e392..5a183a1 100644
--- a/home-manager/nixvim/default.nix
+++ b/home-manager/nixvim/default.nix
@@ -264,5 +264,16 @@
     };
 
     plugins.copilot-lua.enable = true;
+    plugins.copilot-cmp.enable = true;
+    plugins.codecompanion = {
+      enable = true;
+      settings = {
+        strategies = {
+          agent.adapter = "copilot";
+          chat.adapter = "copilot";
+          inline.adapter = "copilot";
+        };
+      };
+    };
   };
 }