From 5876cf45644821092d44ef7de37eb525a94701be Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 24 Jul 2025 21:52:28 +0200 Subject: [PATCH] Add nvim copilot chat --- nix/user/nvim.nix | 1 + nvim/plugins.lua | 3 +++ 2 files changed, 4 insertions(+) diff --git a/nix/user/nvim.nix b/nix/user/nvim.nix index 140783e..c39fb57 100644 --- a/nix/user/nvim.nix +++ b/nix/user/nvim.nix @@ -50,6 +50,7 @@ lspkind-nvim copilot-lua copilot-cmp + CopilotChat-nvim bullets-vim nvim-dap nvim-nio diff --git a/nvim/plugins.lua b/nvim/plugins.lua index d975167..9779c6d 100644 --- a/nvim/plugins.lua +++ b/nvim/plugins.lua @@ -252,6 +252,9 @@ require("copilot").setup({ panel = { enabled = false }, }) require("copilot_cmp").setup() +require("CopilotChat").setup { + model = 'gpt-4.1', +} vim.g.bullets_enabled_file_types = { 'markdown',