https://github.com/joseph-pq/committer.nvim
A neovim plugin for developers working with multiple git commit standards
https://github.com/joseph-pq/committer.nvim
git gitmoji neovim neovim-plugin telescope
Last synced: 3 months ago
JSON representation
A neovim plugin for developers working with multiple git commit standards
- Host: GitHub
- URL: https://github.com/joseph-pq/committer.nvim
- Owner: joseph-pq
- License: mit
- Created: 2024-10-12T21:02:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T12:16:44.000Z (over 1 year ago)
- Last Synced: 2025-08-22T09:49:14.736Z (8 months ago)
- Topics: git, gitmoji, neovim, neovim-plugin, telescope
- Language: Lua
- Homepage:
- Size: 535 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Committer
If you are a developer working in multiple projects, you probably use
a different commit standard per project ([conventional](https://www.conventionalcommits.org/en/v1.0.0/) or [gitmoji](https://gitmoji.dev/)).
This plugin allows you to set a commit standard per project and then just
use `m` to choose a commit prefix without worrying about the standard.
This project is based on [telescope-gitmoji.nvim](https://github.com/olacin/telescope-gitmoji.nvim) and [telescope-cc.nvim](https://github.com/olacin/telescope-cc.nvim).

## Getting Started
Install with lazy.nvim:
```lua
{
'JosephPenaQuino/committer.nvim',
config = function()
require("committer").setup()
end,
dependencies = {
'nvim-telescope/telescope.nvim',
'olacin/telescope-gitmoji.nvim',
'olacin/telescope-cc.nvim',
'nvim-lua/plenary.nvim',
},
}
```
## Usage
Open your git project and run:
```vim
:SetCommitType
```
Then, write `conventional` or `gitmoji`.
After that, when writing a commit message, use `m` to choose a commit
prefix.