| 12345678910111213141516171819202122232425 |
- local M = {
- "folke/which-key.nvim",
- event = "VeryLazy",
- init = function()
- vim.o.timeout = true
- vim.o.timeoutlen = 500
- end,
- }
- M.config = function()
- require("which-key").setup({
- win = {
- border = "single",
- },
- plugins = {
- marks = true,
- registers = true,
- spelling = {
- enabled = false,
- },
- },
- })
- end
- return M
|