11 lines
172 B
Lua
11 lines
172 B
Lua
local status, whichkey = pcall(require, "which-key")
|
|
if not status then
|
|
return
|
|
end
|
|
|
|
whichkey.setup({
|
|
window = {
|
|
border = "double",
|
|
position = "bottom",
|
|
},
|
|
})
|