Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/theoboldalex/praise.nvim
- Owner: theoboldalex
- License: mit
- Created: 2024-01-18T22:59:01.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-24T16:54:41.000Z (5 months ago)
- Last Synced: 2024-08-25T00:50:01.512Z (5 months ago)
- Topics: git, gitblame, lua, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Praise.nvim
🙏 A simple NeoVim plugin that shows virtual inline Git blame information.
## 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`.