dotfiles/.config/nvim/lua/plugins/which-key.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",
},
})