1
0
mirror of https://github.com/ViViDboarder/vim-settings.git synced 2025-01-11 16:03:23 +00:00
vim-settings/neovim/lua/plugins/whichkey.lua
2022-09-08 12:23:52 -07:00

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