1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/whichkey.lua
2022-10-09 03:28:51 +02:00

10 lines
143 B
Lua

local M = {}
function M.setup()
require("which-key").setup({
triggers = { "<leader>", "d", "y", "q", "z", "g", "c" }
})
end
return M