23 lines
408 B
Lua
23 lines
408 B
Lua
return {
|
|
{
|
|
'tpope/vim-fugitive',
|
|
cmd = {
|
|
"Git"
|
|
},
|
|
init = function() vim.keymap.set("n", "<leader>gs", vim.cmd.Git) end
|
|
},
|
|
{
|
|
'rbong/vim-flog',
|
|
cmd = {
|
|
"Flog",
|
|
"Floggit",
|
|
"Flogsplit"
|
|
},
|
|
dependencies = {
|
|
{
|
|
'tpope/vim-fugitive'
|
|
}
|
|
}
|
|
}
|
|
}
|