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
git-log neovim plugin
Last synced: 9 days ago
JSON representation
Check git log of the selected code.
- Host: GitHub
- URL: https://github.com/niuiic/git-log.nvim
- Owner: niuiic
- License: mit
- Created: 2023-09-28T15:06:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-12T08:28:58.000Z (4 months ago)
- Last Synced: 2024-07-31T20:51:21.647Z (3 months ago)
- Topics: git-log, neovim, plugin
- Language: Lua
- Homepage:
- Size: 6.84 KB
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neovim - niuiic/git-log.nvim - Check git log of the selected code. (Git / Quickfix)
README
# git-log.nvim
Check git log of the selected code.
[More neovim plugins](https://github.com/niuiic/awesome-neovim-plugins)
## 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",
},
}
```