diff --git a/plugin/gemini/api.lua b/plugin/gemini/api.lua index 05ac65e..5014626 100644 --- a/plugin/gemini/api.lua +++ b/plugin/gemini/api.lua @@ -1,4 +1,4 @@ --- plugin/gemini/api.lua +-- ~/.config/nvim/plugin/gemini/api.lua local M = {} @@ -67,4 +67,6 @@ function M.get_response(prompt) end end +print("api.lua loaded") + return M diff --git a/plugin/gemini/init.lua b/plugin/gemini/init.lua index af0e5a7..3323621 100644 --- a/plugin/gemini/init.lua +++ b/plugin/gemini/init.lua @@ -18,6 +18,8 @@ local function gemini_query(prompt) border = "rounded", title = "Google AI Response", }) + else + vim.notify("Failed to get a response from Gemini API", vim.log.levels.ERROR) end end @@ -43,9 +45,11 @@ vim.keymap.set("n", "g", function() end) end, { desc = "Query Google AI (via Input)" }) --- Optional setup function if you want to add configuration +-- Add a setup function (even if it's empty) local function setup() - -- Add any setup logic here (e.g., reading configuration options) + print("gemini.setup() called") -- For debugging + print("api module loaded:", api) -- For debugging + -- Optional: Add any initialization logic here end return {