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