minor updates
re-add disabled plugins fix minor config in git plugins
This commit is contained in:
parent
f8fe8c3551
commit
34e2058062
3 changed files with 5 additions and 6 deletions
|
|
@ -3,7 +3,6 @@ return {
|
|||
dependencies = {
|
||||
{ "nvim-tree/nvim-web-devicons", lazy = true },
|
||||
},
|
||||
enabled = false,
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
cmd = "Grapple",
|
||||
keys = {
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ return {
|
|||
map({ "n", "v" }, "r", ":Gitsigns reset_hunk<CR>", "Reset Hunk")
|
||||
map("n", "u", gs.undo_stage_hunk, "Undo Stage Hunk")
|
||||
map("n", "R", gs.reset_buffer, "Reset Buffer")
|
||||
map("n", "p", gs.preview_hunk, "Preview Hunk")
|
||||
map("n", "<TAB>", gs.preview_hunk, "Preview Hunk")
|
||||
map("n", "l", function() gs.blame_line({full = true}) end, "Blame Line")
|
||||
map("n", "d", gs.diffthis, "Diff This")
|
||||
end,
|
||||
|
|
@ -77,21 +77,21 @@ return {
|
|||
function()
|
||||
require("neogit").open({ "commit" })
|
||||
end,
|
||||
desc = "commit",
|
||||
desc = "Commit",
|
||||
},
|
||||
{
|
||||
"<leader>gp",
|
||||
function()
|
||||
require("neogit").open({ "pull" })
|
||||
end,
|
||||
desc = "Neogit",
|
||||
desc = "Pull",
|
||||
},
|
||||
{
|
||||
"<leader>gP",
|
||||
function()
|
||||
require("neogit").open({ "push" })
|
||||
end,
|
||||
desc = "Neogit",
|
||||
desc = "Push",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue