Minor fixes

This commit is contained in:
Jonas Widen 2025-03-16 10:16:01 +01:00
parent e050fed2b6
commit 02711ed6af
2 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,4 @@
-- plugin/gemini/api.lua -- ~/.config/nvim/plugin/gemini/api.lua
local M = {} local M = {}
@ -67,4 +67,6 @@ function M.get_response(prompt)
end end
end end
print("api.lua loaded")
return M return M

View File

@ -18,6 +18,8 @@ local function gemini_query(prompt)
border = "rounded", border = "rounded",
title = "Google AI Response", title = "Google AI Response",
}) })
else
vim.notify("Failed to get a response from Gemini API", vim.log.levels.ERROR)
end end
end end
@ -43,9 +45,11 @@ vim.keymap.set("n", "<leader>g", function()
end) end)
end, { desc = "Query Google AI (via Input)" }) 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() 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 end
return { return {