Files
nvim-config/lua/plugins/lazygit.lua
AeroGlory 0f09293a06 Fixed bug with movement keys
- LazyGit is now <leader>g instead of leader<lg>
2026-01-10 23:41:20 -05:00

22 lines
569 B
Lua

-- nvim v0.8.0
return {
"kdheepak/lazygit.nvim",
lazy = true,
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 = "LazyGit" }
}
}