add lazygit plugin

This commit is contained in:
Zeke 2023-07-07 23:39:08 -05:00
parent 1e8b72bb84
commit a119033625
2 changed files with 10 additions and 1 deletions

View File

@ -2,4 +2,10 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
"kdheepak/lazygit.nvim",
-- optional for floating window border decoration
dependencies = {
"nvim-lua/plenary.nvim",
},
}

View File

@ -0,0 +1,3 @@
return {
vim.keymap.set('n', '<leader>gg', ':LazyGit<CR>', { desc = 'Open LazyGit' })
}