niuiic/git-log.nvim

github github
git
stars 15
issues 0
subscribers 2
forks 0
CREATED

2023-09-28

UPDATED

5 months ago


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

Config

Default configuration here.

{
    -- 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",
    },
}