Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hougesen/blame-me.nvim
A lean git blame plugin for neovim
https://github.com/hougesen/blame-me.nvim
git git-blame neovim neovim-plugin nvim vim
Last synced: 27 days ago
JSON representation
A lean git blame plugin for neovim
- Host: GitHub
- URL: https://github.com/hougesen/blame-me.nvim
- Owner: hougesen
- License: mit
- Created: 2023-09-21T21:21:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-13T00:26:01.000Z (9 months ago)
- Last Synced: 2024-04-24T04:26:35.640Z (7 months ago)
- Topics: git, git-blame, neovim, neovim-plugin, nvim, vim
- Language: Lua
- Homepage:
- Size: 4.06 MB
- Stars: 15
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# blame-me.nvim
A lean git blame plugin for neovim.
![demo](assets/demo.gif?raw=true)
## Usage
blame-me.nvim _should_ work out of the box. Simply install it using your package manager of choice:
### Lazy
```lua
local blame_me_plugin = {
'hougesen/blame-me.nvim',
opts = {
-- your options here
},
}
```## Available options
| Name | Default | Description |
| ---------- | ----------------------------------- | -------------------------------------------------------------- |
| modes | {'n'} | Modes plugin is enabled for |
| delay | 1000 | Amount of milliseconds to wait before showing line information |
| show_on | `{ 'CursorHold', 'CursorHoldI' }` | List of events to show line information on |
| hide_on | `{ 'CursorMoved', 'CursorMovedI' }` | List of events to hide line information on |
| refresh_on | `{ 'BufEnter', 'BufWritePost' }` | List of events to fresh commit information on |
| signs | `true` | Whether to set `M` sign |