1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/whichkey.lua

10 lines
143 B
Lua
Raw Normal View History

2022-10-09 03:28:51 +02:00
local M = {}
function M.setup()
require("which-key").setup({
triggers = { "<leader>", "d", "y", "q", "z", "g", "c" }
})
end
return M