dotfiles/.config/nvim/lua/plugins/which-key.lua

12 lines
172 B
Lua
Raw Normal View History

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