don't fail keymaps if plugins aren't installed

This commit is contained in:
Andy Teijelo 2022-11-10 11:01:12 -05:00
parent 9bad8de707
commit eb0dd08f70

View file

@ -129,8 +129,18 @@ 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")
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",
@ -140,4 +150,6 @@ wk.register({
},
prefix = "<leader>"
})
end
otherkeymaps()