fix(nvim): remove conflicting mapping

This commit is contained in:
Rob Watson 2023-10-01 21:53:36 +02:00
parent b99a48d09a
commit e66e86b6b6
1 changed files with 1 additions and 2 deletions

View File

@ -81,12 +81,11 @@ require("gitsigns").setup({
map("n", "<leader>hb", function()
gs.blame_line({ full = true })
end)
map("n", "<leader>tb", gs.toggle_current_line_blame)
map("n", "<leader>hd", gs.diffthis)
map("n", "<leader>hD", function()
gs.diffthis("~")
end)
map("n", "<leader>td", gs.toggle_deleted)
map("n", "<leader>hx", gs.toggle_deleted)
map({ "o", "x" }, "ih", ":<C-U>Gitsigns select_hunk<CR>")
end,