mirror of https://github.com/zpl-zak/nvimrc
14 lines
255 B
Lua
14 lines
255 B
Lua
|
return {
|
||
|
"jackMort/ChatGPT.nvim",
|
||
|
event = "VeryLazy",
|
||
|
config = function()
|
||
|
require("chatgpt").setup()
|
||
|
end,
|
||
|
dependencies = {
|
||
|
"MunifTanjim/nui.nvim",
|
||
|
"nvim-lua/plenary.nvim",
|
||
|
"nvim-telescope/telescope.nvim"
|
||
|
}
|
||
|
}
|
||
|
|