mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-05 04:26:27 +00:00
13 lines
198 B
Lua
13 lines
198 B
Lua
local M = {}
|
|
|
|
function M.configure()
|
|
require("which-key").setup({
|
|
triggers_blacklist = {
|
|
i = { "j", "k", "`" },
|
|
v = { "j", "k" },
|
|
},
|
|
})
|
|
end
|
|
|
|
return M
|