18 lines
433 B
Lua
18 lines
433 B
Lua
return {
|
|
"jackMort/ChatGPT.nvim",
|
|
event = "VeryLazy",
|
|
config = function()
|
|
require("chatgpt").setup({
|
|
|
|
--api_key_cmd = "op read op://private/OpenAI/credential --no-newline"
|
|
api_key = "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"
|
|
})
|
|
end,
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-telescope/telescope.nvim"
|
|
},
|
|
enabled = false
|
|
}
|