fix(copilot-chat): no need to schedule which-key keys. just use default
This commit is contained in:
@ -50,13 +50,6 @@ return {
|
|||||||
mode = { "n", "v" },
|
mode = { "n", "v" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
init = function()
|
|
||||||
LazyVim.on_load("which-key.nvim", function()
|
|
||||||
vim.schedule(function()
|
|
||||||
require("which-key").register({ a = { name = "+ai" } }, { prefix = "<leader>" })
|
|
||||||
end)
|
|
||||||
end)
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
local chat = require("CopilotChat")
|
local chat = require("CopilotChat")
|
||||||
require("CopilotChat.integrations.cmp").setup()
|
require("CopilotChat.integrations.cmp").setup()
|
||||||
@ -73,6 +66,16 @@ return {
|
|||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"folke/which-key.nvim",
|
||||||
|
optional = true,
|
||||||
|
opts = {
|
||||||
|
defaults = {
|
||||||
|
["<leader>a"] = { name = "+ai" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
-- Telescope integration
|
-- Telescope integration
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
|
Reference in New Issue
Block a user