whichkey.lua 413 B

1234567891011121314151617181920212223
  1. local wk = require("which-key")
  2. wk.setup({
  3. preset = "classic",
  4. win = {
  5. no_overlap = true,
  6. padding = { 1, 2 }, -- top, right, bottom, left
  7. title = true,
  8. title_pos = "center",
  9. zindex = 1000,
  10. },
  11. layout = {
  12. width = { min = 20, max = 50 },
  13. spacing = 3,
  14. align = "left",
  15. },
  16. icons = {
  17. breadcrumb = "»",
  18. separator = "➜",
  19. group = "+",
  20. },
  21. show_help = true,
  22. })