From dbaeb81cd1a25c88fa0cd48ce83d7da554604585 Mon Sep 17 00:00:00 2001 From: Juliano Barbosa Date: Wed, 30 Aug 2023 08:51:02 -0300 Subject: [PATCH] feat(nvim): added chatgpt.lua --- lua/custom/plugins/chatgpt.lua | 15 +++++++++++++++ 1 file changed, 15 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..07ad59b6 --- /dev/null +++ b/lua/custom/plugins/chatgpt.lua @@ -0,0 +1,15 @@ +return { + { + "jackMort/ChatGPT.nvim", + config = function() + require("chatgpt").setup() + 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