summaryrefslogtreecommitdiffstats
path: root/after/plugin/whichkey.lua
blob: 752bc959fdb7ff8c85c64b6f717f2a1cc9940d3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
local status_ok, whichkey = pcall(require, "which-key")
if not status_ok then
	return
end

whichkey.setup {
  icons = {
    breadcrumb = '>>',
    separator = '->',
  },
  winblend = 0,
  window = {
    border = 'shadow',
    margin = { 1, .1, 2, .1 },

  },
  layout = {
    width = { min = 20, max = 50 },
    align = 'center',
  }
}