18 lines
355 B
Lua
18 lines
355 B
Lua
-- Deactivated key mappings
|
|
--
|
|
|
|
local status_wk, wk = pcall(require, 'which-key')
|
|
if not status_wk then
|
|
return
|
|
end
|
|
|
|
wk.add {
|
|
mode = { 'n', 'v', 'i' },
|
|
-- deactivate the following mappings
|
|
{ 'gc', '', hidden = true },
|
|
{ 'gcc', '', hidden = true },
|
|
}
|
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|