vim-settings/neovim/lua/plugins/whichkey.lua

12 lines
241 B
Lua
Raw Normal View History

2021-12-11 00:54:37 +00:00
local M = {}
function M.configure()
2021-12-15 17:37:51 +00:00
require("which-key").setup({
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
})
2021-12-11 00:54:37 +00:00
end
return M