Skip to content

A Neovim plugin that generates meaningful commit messages using AI based on your staged changes. Provides multiple suggestions and follows the conventional commit format.

Notifications You must be signed in to change notification settings

vernette/ai-commit.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 

Repository files navigation

ai-commit.nvim

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

image

Features

  • 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

Prerequisites

Installation

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
}

Configuration

{
  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
}

Usage

  1. Stage your changes using git add
  2. Run :AICommit command
  3. Wait for AI to generate commit messages
  4. Choose from the suggested messages in the dropdown window
  5. The selected message will be used for the commit

Commands

  • :AICommit - Start the commit message generation process

About

A Neovim plugin that generates meaningful commit messages using AI based on your staged changes. Provides multiple suggestions and follows the conventional commit format.

Resources

Stars

Watchers

Forks

Languages