vim-settings/neovim/lua/plugins/whichkey.lua

12 lines
241 B
Lua

local M = {}
function M.configure()
require("which-key").setup({
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
})
end
return M