Initial commit

This commit is contained in:
Dheepak Krishnamurthy
2020-04-03 16:41:47 -06:00
commit 3759d6ab85
4 changed files with 161 additions and 0 deletions

32
README.md Normal file
View File

@@ -0,0 +1,32 @@
# lazygit.nvim
Plugin for calling lazygit from within nvim.
### Install
Use any plugin manager:
**[vim-plug](https://github.com/junegunn/vim-plug)**
```vim
Plug 'kdheepak/lazygit.nvim'
```
**[dein.vim](https://github.com/Shougo/dein.vim)**
```vim
call dein#add('kdheepak/lazygit.nvim')
```
**[Vundle.vim](https://github.com/junegunn/vim-plug)**
```vim
Plugin 'kdheepak/lazygit.nvim'
```
### Usage
```vim
" lazygit
nnoremap <silent> <leader>lg :LazyGit<CR>
```