10 lines
170 B
Lua
10 lines
170 B
Lua
local ok, whichkey = pcall(require, "which-key")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
whichkey.setup({
|
|
window = {
|
|
border = "single", -- none, single, double, shadow
|
|
}
|
|
})
|