From 94a146f74e33a9d7a99b5bc106327196f8e22ba6 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Mon, 3 Jul 2023 13:23:31 -0400 Subject: [PATCH] fix(chatgpt-nvim): fix entire ChatGPT spec (#361) --- lua/astrocommunity/editing-support/chatgpt-nvim/init.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lua/astrocommunity/editing-support/chatgpt-nvim/init.lua b/lua/astrocommunity/editing-support/chatgpt-nvim/init.lua index de292954e..52cda3f36 100644 --- a/lua/astrocommunity/editing-support/chatgpt-nvim/init.lua +++ b/lua/astrocommunity/editing-support/chatgpt-nvim/init.lua @@ -1,11 +1,10 @@ return { "jackMort/ChatGPT.nvim", - init = function() table.insert(astronvim.file_plugins, "ChatGPT.nvim") end, - enabled = true, - event = "VeryLazy", + cmd = { "ChatGPT", "ChatGPTActAs", "ChatGPTEditWithInstructions", "ChatGPTRun" }, depencencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim", "nvim-telescope/telescope.nvim", }, + opts = {}, }