A Neovim plugin that generates meaningful commit messages using AI based on your git changes.
Warning
Currently, the plugin only supports openrouter.ai, but support for other services (OpenAI, Anthropic, local Ollama, etc.) will be added in the future
- Generate commit messages based on staged changes
- Multiple AI-generated commit suggestions
- Clean and minimal dropdown interface
- Follows conventional commit format
- Optional automatic push after commit
- Asynchronous message generation without UI blocking
- Neovim >= 0.8.0
- Git
- plenary.nvim
- telescope.nvim (for commit message selection)
Using lazy.nvim:
{
"vernette/ai-commit.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
},
config = function()
require("ai-commit").setup({
-- your configuration
})
end
}
{
openrouter_api_key = "YOUR_API_KEY", -- or set OPENROUTER_API_KEY environment variable
model = "qwen/qwen-2.5-72b-instruct:free", -- default model
auto_push = false, -- whether to automatically push after commit
}
- Stage your changes using git add
- Run
:AICommit
command - Wait for AI to generate commit messages
- Choose from the suggested messages in the dropdown window
- The selected message will be used for the commit
:AICommit
- Start the commit message generation process