Files
neovim_config/lua/shelbybark/plugins/lazygit.lua
2025-06-04 17:03:58 -05:00

20 lines
497 B
Lua

return {
"kdheepak/lazygit.nvim",
cmd = {
"LazyGit",
"LazyGitConfig",
"LazyGitCurrentFile",
"LazyGitFilter",
"LazyGitFilterCurrentFile",
},
-- optional for floating window border decoration
dependencies = {
"nvim-lua/plenary.nvim",
},
-- setting the keybinding for LazyGit with 'keys' is recommended in
-- order to load the plugin when the command is run for the first time
keys = {
{ "<leader>g", "<cmd>LazyGit<cr>", desc = "Open lazy git" },
},
}