dotfiles/.config/nvim/lua/plugins/vcs.lua

13 lines
245 B
Lua
Raw Permalink Normal View History

2024-07-30 09:21:48 -04:00
return {
{ 'tpope/vim-fugitive' },
{ 'tpope/vim-rhubarb' },
{
'julienvincent/hunk.nvim',
dependencies = { 'MunifTanjim/nui.nvim' },
cmd = { 'DiffEditor' },
config = function ()
require('hunk').setup()
end,
},
2024-07-30 09:21:48 -04:00
}