diff --git a/nvim/.config/nvim/lua/plugins/llm.lua b/nvim/.config/nvim/lua/plugins/llm.lua index 7a339e4..0307ceb 100644 --- a/nvim/.config/nvim/lua/plugins/llm.lua +++ b/nvim/.config/nvim/lua/plugins/llm.lua @@ -7,6 +7,11 @@ return { "nvim-treesitter/nvim-treesitter", "github/copilot.vim", }, + init = function(_) + if require("core.util").is_available("which-key") then + require("which-key").add({ "a", group = "codecompanion" }) + end + end, opts = { strategies = { chat = { adapter = "groq" },