summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/which-key.lua
blob: 93e19f9c29de4bde492c62639f03ac1945016ca1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require("which-key").setup{
  window = {
    position = "bottom", -- bottom, top
    margin = { 1, 40, 1, 0 }, -- extra window margin [top, right, bottom, left]
    padding = { 0, 0, 0, 0 }, -- extra window padding [top, right, bottom, left]
    winblend = 0
  },
  icons = {
    breadcrumb = ">", -- symbol used in the command line area that shows your active key combo
    separator = ":", -- symbol used between a key and it's label
    group = "+", -- symbol prepended to a group
  },
}
remember that computers suck.