Minor fixes

This commit is contained in:
Jonas Widen 2025-03-16 13:11:24 +01:00
parent 116c8deef7
commit 22a1d8045d
3 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,6 @@ A Neovim plugin for interacting with the Google AI API (formerly Gemini).
## Requirements
* Neovim 0.8 or higher
* curl
* A Google AI API key (obtainable from [https://makersuite.google.com/app/apikey](https://makersuite.google.com/app/apikey))
## Installation

View File

@ -1,4 +1,4 @@
-- ~/.config/nvim/plugin/gemini/api.lua
-- plugin/gemini/api.lua
local M = {}

View File

@ -48,6 +48,7 @@ end, { desc = "Query Google AI (via Input)" })
-- Add a setup function (even if it's empty)
local function setup()
print("gemini.setup() called") -- For debugging
local api = require("gemini.api")
print("api module loaded:", api) -- For debugging
-- Optional: Add any initialization logic here
end