nvim/lua/plugins/lazygit.lua

12 lines
293 B
Lua
Raw Normal View History

2024-06-17 15:22:39 +07:00
return {
"kdheepak/lazygit.nvim",
-- optional for floating window border decoration
dependencies = {
"nvim-lua/plenary.nvim",
},
enabled = vim.fn.exepath("lazygit") ~= "",
keys = {
{ "<leader>z", "<cmd>LazyGit<cr>", desc = "Symbols Outline" },
},
}