86 lines
2.1 KiB
Lua
86 lines
2.1 KiB
Lua
local chat_opts = {
|
|
auto_insert_mode = false,
|
|
question_header = " Me ",
|
|
answer_header = " Copilot ",
|
|
window = {
|
|
width = 0.4,
|
|
},
|
|
}
|
|
return {
|
|
{
|
|
"CopilotC-Nvim/CopilotChat.nvim",
|
|
dependencies = {
|
|
{
|
|
"zbirenbaum/copilot.lua",
|
|
cmd = "Copilot",
|
|
build = ":Copilot auth",
|
|
-- event = "Buf",
|
|
lazy = true,
|
|
opts = {
|
|
suggestion = {
|
|
enabled = false,
|
|
},
|
|
panel = { enabled = false },
|
|
filetypes = {
|
|
markdown = true,
|
|
help = true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
branch = "main",
|
|
cmd = "CopilotChat",
|
|
opts = chat_opts,
|
|
keys = {
|
|
{ "<c-s>", "<CR>", ft = "copilot-chat", desc = "Submit Prompt", remap = true },
|
|
{ "<leader>a", "", desc = "+ai", mode = { "n", "v" } },
|
|
{
|
|
"<leader>aa",
|
|
function()
|
|
return require("CopilotChat").toggle()
|
|
end,
|
|
desc = "Toggle (CopilotChat)",
|
|
mode = { "n", "v" },
|
|
},
|
|
{
|
|
"<leader>ax",
|
|
function()
|
|
return require("CopilotChat").reset()
|
|
end,
|
|
desc = "Clear (CopilotChat)",
|
|
mode = { "n", "v" },
|
|
},
|
|
{
|
|
"<leader>aq",
|
|
function()
|
|
local input = vim.fn.input("Quick Chat: ")
|
|
if input ~= "" then
|
|
require("CopilotChat").ask(input)
|
|
end
|
|
end,
|
|
desc = "Quick Chat (CopilotChat)",
|
|
mode = { "n", "v" },
|
|
},
|
|
-- Show prompts actions with telescope
|
|
-- CURRENTLY BROKEN!!!!!!!!
|
|
-- {
|
|
-- "<leader>ap",
|
|
-- require("CopilotChat").pick("prompt"),
|
|
-- desc = "Prompt Actions (CopilotChat)",
|
|
-- mode = { "n", "v" },
|
|
-- },
|
|
},
|
|
config = function(_, opts)
|
|
local chat = require("CopilotChat")
|
|
vim.api.nvim_create_autocmd("BufEnter", {
|
|
pattern = "copilot-chat",
|
|
callback = function()
|
|
vim.opt_local.relativenumber = false
|
|
vim.opt_local.number = false
|
|
vim.opt_local.spell = false
|
|
end,
|
|
})
|
|
chat.setup(opts)
|
|
end,
|
|
},
|
|
}
|