add fugitive

This commit is contained in:
xesc 2025-03-02 16:01:53 +01:00
parent cfad61efe2
commit 711138561f

8
lua/plugin/fugitive.lua Normal file
View file

@ -0,0 +1,8 @@
return {
{
'tpope/vim-fugitive',
config = function()
vim.api.nvim_set_keymap("n", "<leader>G", "<cmd>Git<cr>", {})
end,
}
}