summaryrefslogtreecommitdiffstats
path: root/lua/user/core/which-key.lua
blob: 33e9886ed0df5b1ce432e123bcdb774411afcef4 (plain)
1
2
3
4
5
6
7
8
9
local status_ok, which_key = pcall(require, "which-key")
if not status_ok then
  print "which-key init failed"
  return
end

which_key.setup {
  -- FIXME
}