You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/lazygit.lua

38 lines
905 B
Lua

return {
'folke/snacks.nvim',
---@diagnostic disable-next-line: undefined-doc-name
---@type snacks.Config
opts = {
lazygit = {
-- your lazygit configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
},
keys = {
{
'<leader>gg',
function()
Snacks.lazygit { cwd = vim.fn.getcwd() }
end,
{ desc = 'Lazygit (Root Dir)' },
},
{
'<leader>gf',
function()
Snacks.lazygit.log_file()
end,
{ desc = 'Lazygit Current File History' },
},
{
'<leader>gl',
function()
Snacks.lazygit.log { cwd = vim.fn.getcwd() }
end,
{ desc = 'Lazygit Log' },
},
{ '<leader>gb', '<cmd>Gitsigns blame<cr>', desc = 'Git blame' },
{ '<leader>gs', '<cmd>Telescope git_status<CR>', desc = 'Git Status' },
},
}