Files
dotfiles/nvim/m-housh/lua/user/plugin/lazygit.lua
Michael Housh c930fb7e7a Added lazy git
2023-09-29 23:49:56 -04:00

11 lines
208 B
Lua

return {
"kdheepak/lazygit.nvim",
dependencies = {
"nvim-telescope/telescope.nvim",
"nvim-lua/plenary.nvim"
},
config = function()
require("telescope").load_extension("lazygit")
end,
}