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

https://github.com/oncomouse/lazygit.nvim

Really simple lazygit integration for Neovim
https://github.com/oncomouse/lazygit.nvim

Last synced: 2 months ago
JSON representation

Really simple lazygit integration for Neovim

Awesome Lists containing this project

README

          

This plugin for [Neovim](https://github.com/neovim/neovim) opens [lazygit](https://github.com/jesseduffield/lazygit) in a new tab. Press `q` in that tab will close lazygit.

I use this in place of any more vim-y git integrations.

You can trigger it as a command, via `:LazyGit` or by binding to the `` binding, `(lazygit.nvim)`, like so:

```
vim.keymap.set("n", "lg", "(lazygit.nvim)")
```
## Installation

With [lazy.nvim](https://github.com/folke/lazy.nvim):

~~~
{
"oncomouse/lazygit.nvim",
cmd = "LazyGit",
keys = { "(lazygit.nvim)" },
}
~~~

With [packer.nvim](https://github.com/wbthomason/packer.nvim):

~~~
use({
"oncomouse/lazygit.nvim",
cmd = "LazyGit",
keys = { "(lazygit.nvim)" },
})
~~~