You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
711 B
Lua
27 lines
711 B
Lua
return {
|
|
{
|
|
"jackMort/ChatGPT.nvim",
|
|
event = "VeryLazy",
|
|
config = function()
|
|
require("chatgpt").setup(
|
|
{
|
|
api_key_cmd = "pass show azure/hypera/oai/token",
|
|
<<<<<<< HEAD
|
|
=======
|
|
api_host_cmd = "pass show azure/hypera/oai/url",
|
|
predefined_chat_gpt_prompts =
|
|
"https://raw.githubusercontent.com/julianobarbosa/custom-gpt-prompts/main/prompt.csv"
|
|
>>>>>>> 6e7efe1fd708281c9c1e215c554461ac76236ee5
|
|
}
|
|
)
|
|
end,
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-telescope/telescope.nvim"
|
|
}
|
|
}
|
|
}
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|