From 656828dc730b5c65876fd023fa9f2ebab588f2c2 Mon Sep 17 00:00:00 2001 From: Andreas Wachs Date: Fri, 7 Jul 2023 06:56:44 +0200 Subject: [PATCH] Add chatgpt --- lua/custom/plugins/chatgpt.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/custom/plugins/chatgpt.lua 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" + } + } +}