Initial commit
This commit is contained in:
commit
e2cff543d6
29 changed files with 2701 additions and 0 deletions
nvim/plugin
11
nvim/plugin/diffview.lua
Normal file
11
nvim/plugin/diffview.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
if vim.g.did_load_diffview_plugin then
|
||||
return
|
||||
end
|
||||
vim.g.did_load_diffview_plugin = true
|
||||
|
||||
vim.keymap.set('n', '<leader>gfb', function()
|
||||
vim.cmd.DiffviewFileHistory(vim.api.nvim_buf_get_name(0))
|
||||
end, { desc = 'diffview [g]it [f]ile history (current [b]uffer)' })
|
||||
vim.keymap.set('n', '<leader>gfc', vim.cmd.DiffviewFileHistory, { desc = 'diffview [g]it [f]ile history ([c]wd)' })
|
||||
vim.keymap.set('n', '<leader>gd', vim.cmd.DiffviewOpen, { desc = '[g]it [d]iffview open' })
|
||||
vim.keymap.set('n', '<leader>gft', vim.cmd.DiffviewToggleFiles, { desc = '[g]it [d]iffview [f]iles [t]oggle' })
|
Loading…
Add table
Add a link
Reference in a new issue