Files
neovim-config/lua/plugins/lazygit.lua
T
rootiest 4990475a9a 🎨 Aesthetics
- Consistent look across plugin files
2024-07-11 01:37:48 -04:00

24 lines
740 B
Lua

-- -----------------------------------------------------------------------------
-- --------------------------------- LazyGit -----------------------------------
-- -----------------------------------------------------------------------------
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>lg", "<cmd>LazyGit<cr>", desc = " LazyGit" },
},
}