1
0
mirror of https://github.com/ViViDboarder/vim-settings.git synced 2025-01-11 16:53:22 +00:00
vim-settings/neovim/lua/plugins/whichkey.lua
2021-12-15 09:37:51 -08:00

12 lines
241 B
Lua

local M = {}
function M.configure()
require("which-key").setup({
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
})
end
return M