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 = {
|
||||
plugin = true,
|
||||
n = {
|
||||
|
|
|
|||
|
|
@ -52,6 +52,13 @@ local plugins = {
|
|||
end,
|
||||
},
|
||||
|
||||
{ "tpope/vim-fugitive",
|
||||
cmd = "Git",
|
||||
init = function ()
|
||||
require("core.utils").load_mappings "fugitive"
|
||||
end
|
||||
},
|
||||
|
||||
{ "nvim-telescope/telescope.nvim",
|
||||
cmd = "Telescope",
|
||||
config = function()
|
||||
|
|
|
|||
Reference in New Issue