which-key.lua (412B)
1 -- lua/plugins/which-key.lua 2 return { 3 { 4 "folke/which-key.nvim", 5 event = "VeryLazy", -- load which-key after other plugins/modules 6 init = function() 7 vim.o.timeout = true 8 vim.o.timeoutlen = 800 -- time to wait for key sequence (ms) 9 end, 10 opts = { 11 plugins = { spelling = true }, -- show spelling suggestions in which-key 12 win = { border = "single", }, 13 }, 14 }, 15 } 16