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