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

@ -24,5 +24,5 @@ vim.keymap.set('n', '<leader>t', function()
end
end
end
vim.system({ 'sioyek', pdf })
vim.system({ 'sioyek', '--new-instance', pdf })
end, { buffer = true })

View file

@ -5,7 +5,6 @@
"blink-cmp-ssh": { "branch": "main", "commit": "4d6c8e0c0983acb74bf7a2988307ab867ce231a9" },
"blink-cmp-tmux": { "branch": "main", "commit": "c0c59d1e5771a8de25b547dc18eb274cbce2438c" },
"blink.cmp": { "branch": "main", "commit": "b650e976a927be6b46487a0a610b75af111376c5" },
"canola.nvim": { "branch": "main", "commit": "60bfbe05da1a0adb0b3ed28ac055cd23528b764e" },
"cp.nvim": { "branch": "main", "commit": "e989897c7767b8d9c9a1be4ca5c0618b13a18ea4" },
"dial.nvim": { "branch": "master", "commit": "f2634758455cfa52a8acea6f142dcd6271a1bf57" },
"diffs.nvim": { "branch": "main", "commit": "dfebc68a1fc3e93dae5b6d49133243ec1886cb19" },
@ -30,6 +29,7 @@
"nvim-vtsls": { "branch": "main", "commit": "0b5f73c9e50ce95842ea07bb3f05c7d66d87d14a" },
"nvim-web-devicons": { "branch": "master", "commit": "746ffbb17975ebd6c40142362eee1b0249969c5c" },
"overseer.nvim": { "branch": "master", "commit": "392093e610333c0aea89bf43de7362e25783eada" },
"pending.nvim": { "branch": "main", "commit": "0727a03d4109200ed2780dccf7dcd9f2b459a5d1" },
"treesj": { "branch": "main", "commit": "186084dee5e9c8eec40f6e39481c723dd567cb05" },
"vim-abolish": { "branch": "master", "commit": "dcbfe065297d31823561ba787f51056c147aa682" },
"vim-fugitive": { "branch": "master", "commit": "61b51c09b7c9ce04e821f6cf76ea4f6f903e3cf4" },

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()

View file

@ -439,4 +439,7 @@ return {
},
},
},
{
'barrettruth/pending.nvim'
}
}