don't fail keymaps if plugins aren't installed
This commit is contained in:
parent
9bad8de707
commit
eb0dd08f70
1 changed files with 23 additions and 11 deletions
|
@ -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=false} end, opts)
|
||||||
-- vim.keymap.set('n', '<Leader>hB', function() gs.blame_line{full=true} end, opts)
|
-- vim.keymap.set('n', '<Leader>hB', function() gs.blame_line{full=true} end, opts)
|
||||||
|
|
||||||
local wk = require("which-key")
|
local function otherkeymaps()
|
||||||
local gs = require("gitsigns")
|
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({
|
wk.register({
|
||||||
g = {
|
g = {
|
||||||
name = "gitsigns",
|
name = "gitsigns",
|
||||||
|
@ -140,4 +150,6 @@ wk.register({
|
||||||
},
|
},
|
||||||
prefix = "<leader>"
|
prefix = "<leader>"
|
||||||
})
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
otherkeymaps()
|
||||||
|
|
Loading…
Reference in a new issue