nvim/lua/plugins/lazygit.lua
2023-01-29 11:15:50 +01:00

25 lines
406 B
Lua

return {
'kdheepak/lazygit.nvim',
dependencies = {
'nvim-telescope/telescope.nvim'
},
cmd = {
'LazyGit',
'LazyGitConfig',
'LazyGitFilter',
'LazyGitFilterCurrentFile',
'LazyGit',
},
config = function()
require("telescope").load_extension("lazygit")
end,
keys = {
{
'<Space>g',
function()
require('lazygit').lazygit()
end
}
}
}