From 5a3716b4539d34ed4d6a12616b734ecf692002dd Mon Sep 17 00:00:00 2001 From: Jonas Widen Date: Sun, 16 Mar 2025 09:48:29 +0100 Subject: [PATCH] Updated README.md --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80b4254..6a0233c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,23 @@ -# gemini +# neovim-gemini -A Neovim plugin for interacting with the Google AI API (formerly Gemini). \ No newline at end of file +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 + +Use your favorite Neovim package manager (e.g., Lazy.nvim): + +```lua +-- Example Lazy.nvim configuration +{ + "your_username/neovim-gemini", -- Replace with your GitHub username and repo name + config = function() + require("gemini").setup() -- Optional: Add a setup function in your init.lua + end, + dependencies = {}, -- Add any dependencies here +}