nvim/lua/plugins/fugitive.lua

10 lines
207 B
Lua

return {
'tpope/vim-fugitive',
cmd = 'Git',
init = function()
local u = require('utils')
local map = u.set_keymap
map('n', '<leader>vg', ':vert Git<cr>', { desc = 'Git status' })
end,
}