Files
dotfiles/nvim/lua/plugins/which-key.lua
Valeriy Filippov 210e99d004 Add neovim config
2026-03-05 16:34:38 +03:00

15 lines
334 B
Lua

-- https://github.com/folke/which-key.nvim
return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 500
end,
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
}