add git fugitive
This commit is contained in:
parent
cfa6df0f06
commit
2f20e39748
|
|
@ -136,6 +136,13 @@ M.telescope = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
M.fugitive = {
|
||||||
|
plugin = true,
|
||||||
|
n = {
|
||||||
|
["<leader>gs"] = { "<cmd> Git <CR>", "Git" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
M.undotree = {
|
M.undotree = {
|
||||||
plugin = true,
|
plugin = true,
|
||||||
n = {
|
n = {
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,13 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ "tpope/vim-fugitive",
|
||||||
|
cmd = "Git",
|
||||||
|
init = function ()
|
||||||
|
require("core.utils").load_mappings "fugitive"
|
||||||
|
end
|
||||||
|
},
|
||||||
|
|
||||||
{ "nvim-telescope/telescope.nvim",
|
{ "nvim-telescope/telescope.nvim",
|
||||||
cmd = "Telescope",
|
cmd = "Telescope",
|
||||||
config = function()
|
config = function()
|
||||||
|
|
|
||||||
Reference in New Issue