15 lines
301 B
Lua
15 lines
301 B
Lua
-- Deactivated key mappings
|
|
--
|
|
|
|
local wk = require 'which-key'
|
|
|
|
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
|