feat(nvim): new keymap to open the line git blame on lazygit

This commit is contained in:
Sergio Laín 2024-04-22 17:04:44 +02:00
parent 26c379ea9d
commit d323c40492
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -222,3 +222,6 @@ map("n", "go", "<Cmd>call append(line('.'), repeat([''], v:count1))<CR>", { desc
-- Insert Mode
map({ "c", "i", "t" }, "<M-BS>", "<C-w>", { desc = "Delete Word" })
-- Git
map("n", "<leader>ghB", LazyVim.lazygit.blame_line, { desc = "Blame Line (LazyGit)" })