Blamer.nvim
A git blame plugin for neovim inspired by VS Code's GitLens plugin
Install / Use
/learn @APZelos/Blamer.nvimQuality Score
Category
Development & EngineeringSupported Platforms
README
blamer.nvim
A git blame plugin for (neo)vim inspired by VS Code's GitLens plugin.

Note: For Vim, a popup feature is required.
Installation
vim-plug
- Add the following line to your
init.vim:
call plug#begin('~/.local/share/nvim/plugged')
...
Plug 'APZelos/blamer.nvim'
...
call plug#end()
- Run
:PlugInstall.
Packer
- Add the following to
init.lua
require('packer').startup(function(use)
-- other plugins ...
use 'APZelos/blamer.nvim'
-- other ...
end)
- Restart neovim and run
:PackerSync.
Configuration
Enabled
Enables blamer on (neo)vim startup.
You can toggle blamer on/off with the :BlamerToggle command.
If the current directory is not a git repository the blamer will be automatically disabled.
Default: 0
let g:blamer_enabled = 1
In lua:
vim.g.blamer_enabled = true
Delay
The delay in milliseconds for the blame message to show. Setting this too low may cause performance issues.
Default: 1000
let g:blamer_delay = 500
Show in visual modes
Enables / disables blamer in visual modes.
Default: 1
let g:blamer_show_in_visual_modes = 0
Show in insert modes
Enables / disables blamer in insert modes.
Default: 1
let g:blamer_show_in_insert_modes = 0
Prefix
The prefix that will be added to the template.
Default: ' '
let g:blamer_prefix = ' > '
Template
The template for the blame message that will be shown.
Default: '<committer>, <committer-time> • <summary>'
Available options: <author>, <author-mail>, <author-time>, <committer>, <committer-mail>, <committer-time>, <summary>, <commit-short>, <commit-long>.
let g:blamer_template = '<committer> <summary>'
Date format
The format of the date fields. (<author-time>, <committer-time>)
Default: '%d/%m/%y %H:%M'
let g:blamer_date_format = '%d/%m/%y'
Relative time
Shows commit date in relative format
Default: 0
let g:blamer_relative_time = 1
Highlight
The color of the blame message.
Default: link Blamer Comment
highlight Blamer guifg=lightgrey
Author
License
This software is released under the MIT License.
Related Skills
apple-reminders
336.9kManage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
gh-issues
336.9kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
healthcheck
336.9kHost security hardening and risk-tolerance configuration for OpenClaw deployments
node-connect
336.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
