more stuff

This commit is contained in:
Barrett Ruth 2026-02-24 15:32:23 -05:00
parent 8cda45d29c
commit 5492f24b52
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
5 changed files with 23 additions and 2 deletions

View file

@ -211,6 +211,22 @@ return {
forge.browse_root()
end),
},
{
'<leader>gd',
function()
require('fzf-lua').fzf_exec(
'git branch -a --format="%(refname:short)"',
{
prompt = 'Git diff> ',
actions = {
['default'] = function(selected)
vim.cmd('Git diff ' .. selected[1])
end,
},
}
)
end,
},
{
'<leader>gi',
function()