mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-13 06:16:27 +00:00
12 lines
234 B
Lua
12 lines
234 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
|