kickstart.nvim/lua/custom/plugins/chatgpt.lua

21 lines
446 B
Lua
Raw Normal View History

2023-08-30 08:51:02 -03:00
return {
{
"jackMort/ChatGPT.nvim",
2023-08-31 10:44:09 -03:00
event = "VeryLazy",
2023-08-30 08:51:02 -03:00
config = function()
2023-08-31 10:44:09 -03:00
require("chatgpt").setup(
{
api_key_cmd = "pass show azure/hypera/oai/token",
}
)
2023-08-30 08:51:02 -03:00
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