You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
262 B
Lua

local ok, chatgpt = pcall(require, 'chatgpt')
if not ok then
vim.notify("missing module chatgpt", vim.log.levels.WARN)
return
end
local M = {}
local config = {
loading_text = "loading",
}
M.setup = function()
chatgpt.setup({})
end
return M