Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/theoboldalex/praise.nvim

🙏 A simple NeoVim plugin that shows virtual inline Git blame information.
https://github.com/theoboldalex/praise.nvim

git gitblame lua neovim neovim-plugin

Last synced: 26 days ago
JSON representation

🙏 A simple NeoVim plugin that shows virtual inline Git blame information.

Awesome Lists containing this project

README

        

# Praise.nvim

🙏 A simple NeoVim plugin that shows virtual inline Git blame information.

image

## Requirements
- Neovim >= 0.9
- awk
- sed
- git

## Installation

### Plug
```lua
Plug 'theoboldalex/praise.nvim'
```

### Packer
```lua
use {'theoboldalex/praise.nvim'}
```

### Lazy
```lua
-- init.lua
{ 'theoboldalex/praise.nvim' }

-- plugins/praise.lua
return {
'theoboldalex/praise.nvim'
}
```

## Customisation

### updatetime
You can change the point at which the blame information appears in the buffer by setting the updatetime option in your configuration.

```lua
vim.opt.updatetime = 1000 -- the default is 4000ms
```
> [!WARNING]
>
> Setting very low `updatetime` values can have a negative effect on performance. make sure you have read and understood `h: updatetime` and `:h CursorMoved`.