nvim/lua/plugins/which_key.lua
Evie Litherland-Smith e236c0ae89 More startup optimisations
Start which_key on <leader> key press
Start lualine on loading a buffer
Remove dressing as noice seems to have supersceded it
2023-05-22 08:31:58 +01:00

10 lines
176 B
Lua

return {
"folke/which-key.nvim",
keys = { "<leader>" },
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
config = true,
}