don't fail keymaps if plugins aren't installed

lazyvim
Andy Teijelo 2022-11-10 11:01:12 -05:00
parent 9bad8de707
commit eb0dd08f70
1 changed files with 23 additions and 11 deletions

View File

@ -129,15 +129,27 @@ keymap("i", "<M-k>", "<C-o>gk", opts)
-- vim.keymap.set('n', '<Leader>hb', function() gs.blame_line{full=false} end, opts)
-- vim.keymap.set('n', '<Leader>hB', function() gs.blame_line{full=true} end, opts)
local wk = require("which-key")
local gs = require("gitsigns")
wk.register({
g = {
name = "gitsigns",
p = { "<cmd>Gitsigns preview_hunk<cr>", "Preview hunk" },
b = { function() gs.blame_line{full=false} end, "Blame line (short)" },
B = { function() gs.blame_line{full=true} end, "Blame line (full)" }
},
prefix = "<leader>"
})
local function otherkeymaps()
local ok
local wk
local gs
ok, wk = pcall(require, "which-key")
if not ok then
return
end
ok, gs = pcall(require, "gitsigns")
if not ok then
return
end
wk.register({
g = {
name = "gitsigns",
p = { "<cmd>Gitsigns preview_hunk<cr>", "Preview hunk" },
b = { function() gs.blame_line{full=false} end, "Blame line (short)" },
B = { function() gs.blame_line{full=true} end, "Blame line (full)" }
},
prefix = "<leader>"
})
end
otherkeymaps()