Ecosyste.ms: Awesome

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

https://github.com/niuiic/git-log.nvim

Check git log of the selected code.
https://github.com/niuiic/git-log.nvim

Last synced: 2 months ago
JSON representation

Check git log of the selected code.

Lists

README

        

# git-log.nvim

Check git log of the selected code.

## Usage

Just call `require("git-log").check_log()`.

> Remember to save the file before calling this function.

## Dependencies

- [niuiic/core.nvim](https://github.com/niuiic/core.nvim)

## Config

Default configuration here.

```lua
{
-- args of git log
extra_args = {},
-- window options
win = {
border = "rounded",
width_ratio = 0.6,
height_ratio = 0.8,
},
keymap = {
-- keymap to close the window
close = "q",
},
}
```