1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/whichkey.lua
2022-10-14 13:44:47 +02:00

18 lines
238 B
Lua

local wk = require("which-key")
local M = {}
function M.setup()
wk.setup({
triggers = { "<leader>", "d", "y", "q", "z", "g", "c" }
})
wk.register({
["<leader>l"] = {
name = "Local commands"
}
})
end
return M