chore(nvim): remove blame.nvim keymap

This commit is contained in:
yeti 2025-05-15 16:46:53 +01:00
parent f7e7a7783e
commit 3c955ba097

View File

@ -2,15 +2,14 @@
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
vim.keymap.set( vim.keymap.set(
"n", "n",
"]<space>", "]<space>",
':<C-u>call append(line("."), repeat([""], v:count1))<CR>', ':<C-u>call append(line("."), repeat([""], v:count1))<CR>',
{ silent = true, desc = "Add line below" } { silent = true, desc = "Add line below" }
) )
vim.keymap.set( vim.keymap.set(
"n", "n",
"[<space>", "[<space>",
':<C-u>call append(line(".")-1, repeat([""], v:count1))<CR>', ':<C-u>call append(line(".")-1, repeat([""], v:count1))<CR>',
{ silent = true, desc = "Add line above" } { silent = true, desc = "Add line above" }
) )
vim.keymap.set("n", "<leader>ghB", ":ToggleBlame virtual<Enter>", { silent = true, desc = "Toggle virtual blame" })-- Add any additional keymaps here