diff --git a/lua/custom/plugins/chatgpt.lua b/lua/custom/plugins/chatgpt.lua new file mode 100644 index 00000000..dc574e1f --- /dev/null +++ b/lua/custom/plugins/chatgpt.lua @@ -0,0 +1,13 @@ +return { + { + "jackMort/ChatGPT.nvim", + config = function() + require("chatgpt").setup() + end, + dependencies = { + "MunifTanjim/nui.nvim", + "nvim-lua/plenary.nvim", + "nvim-telescope/telescope.nvim" + } + } +}